c语言的入口

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

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

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

原文地址:https://www.cnblogs.com/StevenChancxy/p/9192606.html