What do you think which way is better declaring the argv argument in the main function and why?
int main(int argc, char **argv /* char *argv[] */ /* char (*argv)[] */) {
//...
}
argv comes into the function ultimately as a pointer - just as a copy of the argv address, but not as an array, right? So I think, the other alternatives must also be syntactically correct, but which way would you prefer?
Regards