Top

Discussion

What is the output of this C code?    

void main()
    {
        int x = 97;
        int y = sizeof(x++);
        printf("x is %d", x);
    }

 

  • A.x is 97
  • B.x is 98
  • C.x is 99
  • D.Run time error

Answer: A

No answer description available for this question.

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

Post your comment