ubuntu編寫C程式
阿新 • • 發佈:2020-12-21
技術標籤:C語言
Ubuntu中編寫C程式
[參考](https://blog.csdn.net/qq_42762607/article/details/108742830)1、使用GCC編寫C程式
1.1、首先建立一個新的C語言原始檔
vim hello.c
開啟vim介面後按i進入寫入模式,然後寫入程式碼
#include <stdio.h>
int main ()
{
printf("hello word\n");
return 0;
}
接著輸入:wq儲存並退出(可以使用wq!強制退出)
然後進行編譯、執行
gcc hello.c -o hello //編譯(最後的hello意思應該是編譯後的可執行檔名)
./hello //執行(最前面有個點不能少,表示當前目錄下,如果少了這個點就會從預設路徑下尋找,有可能會找不到檔案)
結果如下:
1.2、編寫一個主程式檔案mian.c和子程式檔案sub.c
main.c程式:
vim
#include <stdio.h>
#include "sub.c"
int main()
{
int a =2;
int b=4;
printf("x2x(a,b)=%f\n",x2x(a,b));
return 0;
}
sub.c程式
float x2x(int a,int b)
{
return a*b;
}
執行結果如下:
1.3在使用其他標頭檔案時編譯:加上-lm
gcc main.c -lm -o main
例如程式使用了#include<math.h>那麼在編譯的時候應該是這條命令