列印 "Hello World!!" 

#include <stdio.h>      //包含Stand IO(Input/Output)函數----->本程式需要用到 printf() 函數
#include <stdlib.h>     //包含stand Library函數----->本程式需要用到 system() 函數

int main()
{
      printf("Hello World!!\n");   //printf()函數的功能是列印出"...."中的所有格式字串 ,
      printf("Hello\tWorld!!\n");  // \n:表示換行,  \t:表示空八格空白格(即按tab鍵)
      system("PAUSE");              // 暫停,讓使用者按任意鍵繼續
      return 0;
}