摘要: #一、编写C程序,并编译 // main.c int g(int x) { return x + 1; } int f(int x) { return g(x); } int main(void) { return f(1) + 1; } $ gcc –S –o main.s main.c -m32 阅读全文
posted @ 2020-10-13 20:10 逐北 阅读(312) 评论(0) 推荐(0) 编辑