2021年11月7日
摘要: 1.通过输入gcc -S -o main.s main.c 将下面c程序”week0303学号.c“编译成汇编代码 #include <stdio.h> int g(int x){ return x+3; } int f(int x){ int i = 24; return g(x)+i; } in 阅读全文
posted @ 2021-11-07 17:04 20191324 阅读(288) 评论(0) 推荐(0) 编辑