How can I get the size of a dynamically allocated array of double pointers? (pointer to pointer datatype)
int tokencnt=1;
tokenv=(char**)malloc(sizeof(char*));
while(tokencnt<11){
tokenv=(char**)realloc(tokenv,(tokencnt++)*sizeof(char*));
}
printf(*the size of tokenv*);