给位帮忙看一下!error LNK2019: 无法解析的外部符号 _main

/* c1.h (程序名) /
#include
#include
#include /
malloc()等 /
#include /
INT_MAX等 /
#include /
EOF(=^Z或F6),NULL /
#include /
atoi() /
#include /
eof() /
#include /
floor(),ceil(),abs() /
#include /
exit() /
/
函数结果状态代码 /
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
/
#define OVERFLOW -2 因为在math.h中已定义OVERFLOW的值为3,故去掉此行 /
typedef int Status; /
Status是函数的类型,其值是函数结果状态代码,如OK等 /
typedef int Boolean; /
Boolean是布尔类型,其值是TRUE或FALSE */
Status main()
{
printf(" \n ");
return OK;
}

工程类型不一致。编译选项对不上