在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。