我正在编写带有类似 Shell 的界面的小程序。我的ui
是:
void cli_ui(void){
bool loop = true ;
char response[CHARSIZE];
while (loop) {
puts("cofre>");
fgets(response, CHARSIZE, stdin);
....
}
}
我的问题是在提示后读取输入:
cofre>
# input is expected here
我想要的是:
cofre> #input is expected here
你会怎么做?