例如,如果我制作了一个简单的 switch-case,我将如何根据输入关闭控制台应用程序?我不想用来使用break;并跳过循环,我想完全关闭控制台。
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
}