Because when I use the char *argv[]
statement in int main(int argc,char *argv[])
it works, but when I try to use it inside the code body with char *argv[];
does it not work?
The error below is returned at the console when compiling.
error: array size missing in 'argv' char *argv[]; ^
How could I use it inside the code body?