Fork me on GitHub
摘要: 1, 入门程序 创建hello.c文件,并将下方代码粘贴; 使用gcc hello.c -o hello编译该文件; 运行:./hello; #include <stdio.h> int main() { printf("Hello World!\n"); return 0; } 2, 变量 #in 阅读全文
posted @ 2019-12-17 21:00 小a的软件思考 阅读(243) 评论(0) 推荐(0) 编辑