Something like this? #include <stdio.h> char *(*(c[10]))(int **p); char strf0[] = "function0"; char *f0(int **p) { (void) p; return strf0;...
Separate names with a comma.