函数指针数组
#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成神之路。
共有 0 条评论