如何使用switch case在C中退出控制台应用程序?

时间:2013-08-31 16:07:30

标签: c switch-statement console-application exit

例如,如果我做了一个简单的切换案例,我将如何根据输入关闭控制台应用程序?我不想用来休息;并跳过循环,我想完全关闭控制台。

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
}

2 个答案:

答案 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

Documentation for MS-Visual Stuidio