Top

Discussion

What is the output of this C code?    

void main()
    {
        char a = 'a';
        int x = (a )++;
        printf("%d\n", x);
    }

 

  • A.6
  • B.Junk value
  • C.Compile time error
  • D.7

Answer: C

No answer description available for this question.

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

Post your comment