函数指针数组

#include "stdio.h"
void TheShow() {     printf("1.xiao/n"); } void Zootopia() {     printf("2.feng/n"); }
void Inteste() {     printf("3.xing/n"); }
void TheLegendof() {     printf("4.hai/n"); }
void TheMatrix() {     printf("5.hei/n"); }
int main() {     void(*p[5])()={TheShow,Zootopia,Inteste,TheLegendof,TheMatrix};     char list[20];     scanf("%s",list);          for (int i=0;list[i]!='/0';i++)     {         char num=list[i];         num=num-'0';         num--;     

函数指针数组最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/14364.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>