摘要: 汇编语言嵌入到c语言中 #include<stdio.h> int main(void) { int a,b,c; a=4; b=5; _asm { mov eax,a; add eax,b; mov c,eax; } printf("c=%d\n",c); return 0; } 题目:输入某年某 阅读全文
posted @ 2015-12-27 22:41 小宏~ 阅读(237) 评论(0) 推荐(0)