c语言头文件的ERROR提示这个错误 [Error] return-statement with a value, in function returning ✀void✀

2024-11-01 05:40:15
有2个网友回答
网友(1):

Status Getstack(SqStack &S, SElemType e){ // 改&e 为:e, 这就允许你用常数调用。
main(){ SqStack S; // 改&S 为 S
if(S.top==S.base) exit(0); // 改掉 返回 return ERROR; 例如用 exit(0); 因为 void 函数体内 不能用 return 语句。

网友(2):

50 c语言头文件的ER