What is the output of the following code:
void m(int argc, char *argv[]) { main(argc,argv); }
void main(int argc, char *argv[]) { if (argc>0) { printf("%s\n", *argv); argc--; argv++; m(argc,argv); } }
Which of the following is a valid declaration for main() function?
In the following declaration of main, to what does *argv usually correspond?
int main(int argc, char *argv[])
If the program completes executing successfully, what value should the function main() return?