im trying to declare an array of three pointers to functions and invoke the appropriate function based on an index value passed in as an argument im getting confused,this is the code i wrote
int brr,func,arr(int *a[3],float *b[5] ,char *c[6])
{
brr();`func();`
printf("%d\n",brr);
return 0;
}