阅读如下C代码片段(其中Y表示代码指令地址):Y1:void overflow(char* pShellcode, int iLen){ char buffer[8];Y2: memcpy(buffer, pShellcode, dwLen);Y3: ……}Y4: int main(){Y5: ……Y6: overflow("123456789123456789",18);Y7: …}main主程序调用执行overflow函数后,指令指针指向()
A.Y3
B.Y7
C.0x34353637
D.0x37363534
正确答案是D