Top

Discussion

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

#include

int main(int argc, char **argv)
{
    printf("%d\n", argv[argc]);
    return 0;
}

 

  • A.Yes
  • B.No

Answer: B

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment