首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴dlh1234的代码贴全部
#include "stdafx.h"
#include "malloc.h"
 #define  STACK_INIT_SIZE  100; 
  #define  STACKINCREMENT   10;  
typedef struct{
  int *base;
  int *top;
  int stacksize;
}sqstack;
void Initstack(sqstack &s)
{
  s.base=(int *)malloc(STACK_INIT_SIZE * sizeof(int));//syntax error : missing ')' before ';'就是这老提示错误
......................
阅读全部 | 2018年9月23日 22:03
1
dlh1234