打开啊哈C
新建一个程序输出hello world
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hello world!\n");
system("pause");
return 0;
}
点击保存
点击运行
出现如下窗口:
运行结果
- 最后感谢啊哈C作者提供这么干净简洁的软件,方便了初学者
打开啊哈C 新建一个程序输出hello world # include <stdio.h> # include <stdlib.h> int main ( ) { printf ( "hello world!\n" ) ; system ( "pause" ) ; return 0 ; }
打开啊哈C
新建一个程序输出hello world
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hello world!\n");
system("pause");
return 0;
}
点击保存
点击运行
出现如下窗口:
运行结果