return 0; } void inToPostfix(char* infix, char* postfix) { char stack[MAX] = {'\0'}; int i, j, top; for(i = 0, j = 0, top = 0; infix[i] !=
確定! 回上一頁