这样初始化栈有什么问题?
typedef struct {
DataType *base;
DataType *top;
int stacksize;
}SeqStack;
void Initial(SeqStack *s)
{
s->base=(DataType *)malloc(STACK_SIZE*sizeof(DataType));
if(!s->base)exit(-1);
s->top=s->base;
s->stacksize=STACK_SIZE;
}
能不能用它写一个简单程序?