1. 程式人生 > >一個簡單的C程式

一個簡單的C程式

Visual Studio 2013

#include <stdio.h>               //包含標頭檔案
           
int main()                       //主函式main
{                        
	printf("HelloWorld!\n");     //輸出要顯示的字串
	return 0;                    //程式返回0
}

Caesar盧尚宇  [email protected]
2018年12月27日

在這裡插入圖片描述