在Ubuntu上编译和运行C程序通常需要安装编译器和构建工具。以下是使用gcc编译和运行C程序的步骤:
sudo apt update
sudo apt install build-essential
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
gcc hello.c -o hello
这将生成一个可执行文件hello。
./hello
这将输出"Hello, World!"。
以上是在Ubuntu上编译和运行C程序的基本步骤。您可以根据自己的程序和需求进行相应的调整和操作。