Install:
1. 安裝gcc
sudo apt-get install g++
2. 安裝基本library
sudo apt-get install build-essential
撰寫第一個Hello world程式:
1. 開啟編輯器,順便開檔案
command 模式下->/usr/bin/vi hello_world.c
2. 把下面內容打入(vi 編輯器使用方式,請上往查詢)
#include<stdio.h>
int main()
{
printf("%s", "Hellow World!!!\n");
}
3. build code
command 模式下->gcc hello_world.c -o hello_world
4. 執行程式
./hello_world
沒有留言:
張貼留言