C 语言第一课:hello word c
开发工具
- 个人推荐使用 jetBrains 公司的 CLion 开发工具
- 下载地址 https://www.jetbrains.com/clion/
创建项目

- 编写代码
c
//头文件
#include <stdio.h>
//程序入口
int main(){
printf("hello word c ");
}
- 运行结果