_asm{ //内容 }
#include <stdio.h> int main() { int *c; _asm{ mov eax,1 add eax,2 mov c,eax } printf("%d\n",c); return 0; }