文章目录正点原子学习笔记
- Linux环境下C语言编程
- Hello Word
- 编译
- 常见错误
//hello .c #includeint main() { printf("hello world"); return 0; } //gcc a.out hello.c //./a.out

文章目录正点原子学习笔记
//hello .c #includeint main() { printf("hello world"); return 0; } //gcc a.out hello.c //./a.out