hello world程序作为初学者的一个最基本的程序,包含了许多内容。

源代码如下:


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



效果如图所示:

一个简单的hello world程序_#include

本程序知识点将会在下期介绍。