1. 程式人生 > 其它 >學習筆記-啊哈C的使用21.1.1

學習筆記-啊哈C的使用21.1.1

技術標籤:個人學習筆記

開啟啊哈C
新建一個程式輸出hello world

#include <stdio.h>
#include <stdlib.h>
int main()
{
	printf("hello world!\n");
	system("pause");
	return 0;
}

點選儲存
點選執行
出現如下視窗:
編譯成功
執行結果
在這裡插入圖片描述

  • 最後感謝啊哈C作者提供這麼幹淨簡潔的軟體,方便了初學者