There is something that I saw and wanted to check if it is really wrong, as I thought. In the second edition of The C Programming Language 2nd ED by Brian Kernighan and Denis Ritchie, in the section of 5.2 Complicated Declarations, in page 109, it is written so, isn't it false?
char **argv
argv: pointer to char
Isn't it pointer to char* or pointer to pointer of char?
Thanks!