学习笔记-啊哈C的使用21.1.1
程序员文章站
2022-04-08 16:43:12
...
打开啊哈C
新建一个程序输出hello world
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hello world!\n");
system("pause");
return 0;
}
点击保存
点击运行
出现如下窗口:
运行结果
- 最后感谢啊哈C作者提供这么干净简洁的软件,方便了初学者
上一篇: 12步入门Python中的decorator装饰器使用方法
下一篇: Fragment知识小结