头文件什么的没贴上来
struct
{
int status;/*0,未操作,1,标记红旗,2,标记未知,3,显示周围雷数*/
int bombnum;/*该处周围雷数 0-8*/
int bomb;/*该处是否有雷 0,没有雷 1,有雷*/
}Square[16][16];
struct
{
int m;
int n;
}Elem;
struct /*队列结构*/
{
Elem *base; <——–第一处错误指的地方
int front;
int rear;
}Squeue;
int InitQueue(Squeue &Q) <——–第二处错误指的地方
{
Q.base=(SquareL *)malloc(MAXQSIZE*sizeof(SquareL));
return 1;
}
用WINTC编译~~~错误提示两个~~如下
错误 yuyang~1.c 17: 说明缺少’;’
错误 yuyang~1.c 34: 变量列表语法错误
>> 本文固定链接: http://www.vcgood.com/archives/2051
>> 转载请注明: luckyboy_0925 2007年12月27日 于 C语言帝国 发表
typedef struct {
…..;
…..;
} STRUCTNAME;