首页 > 用户发贴区 > 编程问题提问区 > 帮忙看这段程序错在哪里~
2007
12-27

帮忙看这段程序错在哪里~

头文件什么的没贴上来


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: 变量列表语法错误


帮忙看这段程序错在哪里~》有 1 条评论

  1. xstar 说:

    typedef struct {
        …..;
        …..;
    } STRUCTNAME;

留下一个回复