在Ubuntu中运行C程序有两种方式:使用命令行编译和运行,或使用集成开发环境(IDE)。
使用命令行编译和运行C程序:
gcc -o hello hello.c
./hello
使用集成开发环境(IDE):
无论使用哪种方式,都需要确保系统中已经安装了gcc编译器。可以使用以下命令来安装gcc:
sudo apt update sudo apt install build-essential