#include<iostream> using namespace std; void fun() { int tmp; *((int *)*(&tmp+1)-1) = 12; /* _asm { mov eax,dword ptr [ebp] sub eax,0x4 mov dword ptr[eax],0xC } */ } int main() { int a = 10; fun(); cout<<a<<endl; return 0; }
vc6.0可以运行
时间: 2024-10-30 15:00:28