阅读量:0
在C语言中,通常是通过使用循环来实现程序返回主界面的功能。可以在主函数中设置一个循环,让程序在完成一次操作后返回到主界面,等待用户输入下一个操作。例如:
#include int main() { char choice; do { printf("Main Menun"); printf("1. Option 1n"); printf("2. Option 2n"); printf("3. Exitn"); printf("Enter your choice: "); scanf(" %c", &choice); switch(choice) { case '1': // Code for option 1 printf("Option 1 selectedn"); break; case '2': // Code for option 2 printf("Option 2 selectedn"); break; case '3': printf("Exiting programn"); break; default: printf("Invalid choicen"); } } while(choice != '3'); return 0; }
在上面的例子中,程序会一直循环显示主菜单,直到用户选择退出程序(输入3)。用户可以选择不同的选项,执行对应的操作,然后再次回到主菜单。当用户选择退出程序时,程序会结束并返回主函数的结束语句,从而返回到主界面。