3种c语言输出hello world
时间: 2023-11-11 14:04:01 浏览: 81
c语言helloworld
5星 · 资源好评率100%
当然可以,以下是三种C语言输出"Hello World"的方式:
1. 使用printf函数输出
```c
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}
```
2. 使用puts函数输出
```c
#include <stdio.h>
int main() {
puts("Hello World");
return 0;
}
```
3. 使用fputs函数输出
```c
#include <stdio.h>
int main() {
fputs("Hello World\n", stdout);
return 0;
}
```
阅读全文