代码改变世界

c语言的入口

2018-06-17 12:28  陈徐永  阅读(406)  评论(0编辑  收藏  举报

// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>

 

int main()
{
printf("hello world\n");
system("pause");
return 0;
}