3
如何使用變量(我將從用戶輸入中獲得)調用函數?如何使用戶輸入調用函數C
char user_function[10];
scanf("%s", user_function);
user_function(); //Calls the function named user_function that the user typed
(而不必像這樣)
char user_function[10];
scanf("%s", user_function);
if(strcmp(user_function, 'printf()'))
printf();
如果你不想使用if,使用開關 – Alon