Top

Discussion

What will be the output of the following C code?

#include 
    int main()
    {
        int one = 1, two = 2;
        #ifdef next
        one = 2;
        two = 1;
        #endif
        printf("%d, %d", one, two);
    }

 

  • A.1, 1
  • B.1, 2
  • C.2, 1
  • D.2, 2

Answer: B

No answer description available for this question.

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

Post your comment