一个简单的C程序

Visual Studio 2013

#include <stdio.h>               //包含头文件
           
int main()                       //主函数main
{                        
	printf("HelloWorld!\n");     //输出要显示的字符串
	return 0;                    //程序返回0
}

Caesar卢尚宇  [email protected]
2018年12月27日

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/lu1287580078/article/details/85300339