空函数,但函数参数中存在分段错误
|
我的C程序具有这样的堆栈类型定义:
typedef struct {
char T[MaxEl+1][MAX_CHAR];
address TOP;
boolean alive;//ignore this
} Stack;
并创建一个函数:
void expandP(Stack stack[],int i,char input[]) {//variable stack is array of Stack
..
Stack temp;
CreateEmpty(&temp);
..
copyStack(&temp,stack[i]);
}
void CreateEmpty(Stack *S) {
Top(*S) = Nil;
isAlive(*S) = false;
}
void copyStack(Stack* out,Stack in) {
}
运行时给出错误分段错误,编译时不给出警告
没有找到相关结果
已邀请:
1 个回复
凡夕
然后这样称呼它: