c语言的入口

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

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

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

猜你喜欢

转载自www.cnblogs.com/StevenChancxy/p/9192606.html