/* passing an array of string pointers */ #include #include #include void funcinput(char *strptr1[], int); void funcoutput(char *strptr1[], int); int main() { const int NUMSTR = 5; int i; char *strptr[NUMSTR]; funcinput(strptr, NUMSTR); funcoutput(strptr, NUMSTR); return 0; } void funcinput(char *strptr1[], int NUMSTR) { const int STRLNG = 80; int i; char strname[STRLNG]; for (i=0; i