Linux基础:Linux 系统上 C 程序的编译与调试
// hello.c
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
// 使用gcc编译器编译程序
gcc -o hello hello.c
// 运行生成的可执行文件
./hello
这段代码演示了如何在Linux环境下编译和运行一个简单的C程序。首先,它包含了一个打印"Hello, World!"的main
函数。然后,使用gcc
编译器将源代码hello.c
编译成一个名为hello
的可执行文件。最后,运行这个可执行文件以查看输出结果。这是学习Linux环境下C语言编程的基本步骤。
评论已关闭