我正在尝试构建一个在用 C 编写的命令行中运行的程序,如下所示:
int main(void){
char code[25];
char *fullCmd;
char *command;
char *extraCmd;
bool stop = false;
int loop = 1;
while (loop == 1){
printf("C:\\>");
scanf("%[^\n]",code);
fullCmd = strdup(code);
command = strtok(fullCmd, " ");
extraCmd = strtok(NULL, " ");
handStatement(code, command, extraCmd);
if(strcmp(command,"exit\n") == 0 || strcmp(command, "quit\n") == 0){
loop = 0;
printf("Program Terminated\n");
}
}
return 0;
}
HandStatement()
是我的把手之一。但是这里的问题是while循环不会停止让我在执行时输入另一个命令handStatement()
。如果我不使用while,我可以一次执行一个命令。