在C语言中,可以使用switch语句根据选单的选项调用各函数。首先,根据用户输入的选项,确定调用哪个函数,然后在switch语句中根据选项的值执行相应的函数。例如:
#include <stdio.h>
void function1() {
printf("Function 1 is called.\n");
}
void function2() {
printf("Function 2 is called.\n");
}
int main() {
int choice;
printf("Select an option (1 or 2):\n");
scanf("%d", &choice);
switch(choice) {
case 1:
function1();
break;
case 2:
function2();
break;
default:
printf("Invalid option.\n");
break;
}
return 0;
}
在上面的示例中,用户可以选择1或2,根据用户的选择调用对应的函数。如果用户输入的选项不是1或2,则输出"Invalid option."。