I am trying to find length of pointer array. Here is my code:
char **histargv[histsize];
histargv[hist] = (char**)malloc(sizeof(char *)*arg);
variable arg is not constant. Each index of histargv array has different arg value. So how can I find arg value for each index?
Thanks