摘要: C语言代码 #include <stdio.h> int main() { printf("hello, world\n"); return 0; } GCC编译 gcc -o hello hello.c 会得到一个hello的可执行二进制文件 执行 ./hello 打印出hello, world 阅读全文
posted @ 2020-03-29 16:09 xuan_wu 阅读(317) 评论(0) 推荐(0) 编辑