阅读量:0
下面是一个简单的Linux C程序,使用gcc编译器进行编译:
#include <stdio.h> int main() { printf("Hello, World!\n"); return 0; }
在终端中使用以下命令进行编译:
gcc hello.c -o hello
这将生成一个名为hello
的可执行文件。然后,您可以运行该文件:
./hello
这将输出Hello, World!
。
下面是一个更复杂的示例,使用gcc编译器链接两个C程序:
程序1(file1.c):
#include <stdio.h> int main() { printf("Hello from file1!\n"); return 0; }
程序2(file2.c):
#include <stdio.h> int main() { printf("Hello from file2!\n"); return 0; }
在终端中使用以下命令进行编译和链接:
gcc file1.c file2.c -o hello
这将生成一个名为hello
的可执行文件。然后,您可以运行该文件:
./hello
这将输出:
Hello from file1! Hello from file2!
希望这些示例代码对您有所帮助!