1.

If the different command line arguments are supplied at different times would the output of the following program change?

#include<stdio.h> int main(int argc, char **argv)
{ printf("%d n", argv[argc]); return 0;
}

A. Yes
B. No
Answer» C.


Discussion

No Comment Found