C语言打印hello world
时间: 2023-11-12 15:06:00 浏览: 95
hello world_helloworld_
在C语言中,打印“Hello, World”是学习的第一个例子,也是最基本的程序之一。下面是三种常见的打印“Hello, World”的方式:
1. 使用printf()函数,代码如下:
#include <stdio.h>
int main() {
printf("Hello, World!\\n");
return 0;
}
2. 使用putchar()函数,代码如下:
#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. 使用puts()函数,代码如下:
#include <stdio.h>
int main() {
puts("Hello, World!");
return 0;
}
这三种方法都可以打印出“Hello, World”,其中printf()函数是最常用的方法,puts()函数也是一种常用的方法,而putchar()函数则可以用来输出单个字符。
阅读全文