例如,如果我做了一个简单的切换案例,我将如何根据输入关闭控制台应用程序?我不想用来休息;并跳过循环,我想完全关闭控制台。
char choice;
printf("Run random function \n");
printf("Exit \n");
choice = getchar();
fflush(stdin);
switch(choice)
{
case '1':
//randomFunction();
case '2':
//I want this case to exit the console the console
}
答案 0 :(得分:1)
只需使用exit (EXIT_SUCCESS);
参考 - exit
答案 1 :(得分:0)
您可以调用exit()
将返回值作为参数传递,调用进程/批处理文件可以检查此返回值:
exit(EXIT_SUCCESS); // = 0 = (standard) success
或
exit(EXIT_FAILURE); // = 1 = (standard) failure
或
exit(123); // return a specific value