Top

Discussion

What will be the output of the following C code (if run with no options or arguments)?

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

 

  • A.1
  • B.Depends on the platform
  • C.Depends on the compiler

Answer: B

No answer description available for this question.

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

Post your comment