What does ** mean in the following code?
char **argv; |
It declares argv as a pointer that points to a char pointer. It is equivalent to the following code.
char *argv[]; |
What does ** mean in the following code?
char **argv; |
It declares argv as a pointer that points to a char pointer. It is equivalent to the following code.
char *argv[]; |