linux编写一个helloworld
时间: 2023-11-09 17:07:21 浏览: 185
编写 hello world web 程序
下面是在Linux下编写一个helloworld的代码:
```c
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
```
将上述代码保存为`helloworld.c`,然后在终端中输入以下命令进行编译:
```
gcc helloworld.c -o helloworld
```
编译成功后,输入以下命令运行程序:
```
./helloworld
```
输出结果为:
```
Hello, world!
```
阅读全文