摘要: HelloWorld hello.c #include<stdio.h> int main() { printf("helloworld!\n"); return 0; } makefile hello : hello.o cc -o hello hello.o hello.o : hello.c 阅读全文
posted @ 2021-01-06 20:22 多弗朗强哥 阅读(106) 评论(0) 推荐(0) 编辑