三种c语言输出helloworld
时间: 2023-11-13 12:02:15 浏览: 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. 使用putchar函数输出
```c
#include <stdio.h>
int main() {
char str[] = "Hello World!";
int i = 0;
while (str[i] != '\0') {
putchar(str[i]);
i++;
}
putchar('\n');
return 0;
}
```
相关问题
3种c语言输出hello world
当然可以,以下是三种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;
}
```
三种用c语言输出helloworld
当然可以,以下是三种用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. 使用putchar函数输出
```c
#include <stdio.h>
int main() {
char str[] = "Hello World!";
int i = 0;
while (str[i] != '\0') {
putchar(str[i]);
i++;
}
putchar('\n');
return 0;
}
```
阅读全文