您好,登錄后才能下訂單哦!
在Ubuntu上配置C編譯環境,需要安裝一些必要的工具和庫
sudo apt update
sudo apt upgrade
sudo apt install build-essential
build-essential
包含了GCC、G++、Make等必要的開發工具。
echo $PATH
如果需要手動添加路徑,請將以下內容添加到~/.bashrc
或~/.profile
文件中:
export PATH=$PATH:/usr/bin
然后運行source ~/.bashrc
或source ~/.profile
使更改生效。
hello.c
的文件,內容如下:#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
hello.c
文件的目錄,然后使用GCC編譯它:gcc hello.c -o hello
這將生成一個名為hello
的可執行文件。
./hello
你應該看到輸出“Hello, World!”。
現在你已經在Ubuntu上成功配置了C編譯環境。你可以開始編寫和編譯更復雜的C程序了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。