欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C语言实验——Hello World!(printf练习)

程序员文章站 2024-01-16 21:28:46
...

C语言实验——Hello World!(printf练习)

本题没有输入数据
Output

输出字符串Hello World!输出后需要换行。
Sample Input

Sample Output

Hello World!

#include<stdio.h>
int main()
{
    printf("Hello World!\n");
    return 0;
}