用VC编程的时候遇到的一个问题,求老手指点
错误 2 error LNK1561: 必须定义入口点 E:\C语言相关程序\23\23\LINK 23VC报错的内容,源代码如下:
#include<stdlib.h>
#include<stdio.h>
#define N 100
int mian()
{
int num[N],i,max=0;
for(i=0;i>0;i++){
printf("Enter a number:");
scanf("%d",&num[i]);
if(max<num[i])
max=num[i];
}
printf("The largest number entered was:%d",max);
system("pause");
return 0;
}
其实就是搞不懂定义入口是什么意思