#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