编写一个C程序运行时输出 Hello World!

编写一个C程序,运行时输出Hello World!

这个程序是一些国外C教材中作为第一个程序例子介绍的,一般称为Hello程序。

代码示例:

#include <stdio.h>

int main()
{
	printf("%s
", "Hello World!");
	return 0;
}

运行截图:

编写一个C程序运行时输出 Hello World!

原文地址:https://www.cnblogs.com/weiyidedaan/p/13359681.html