1.

What is the output of this C code?   #include <stdio.h> int main() {     int a = 10;     if (a == a--)         printf("TRUE 1\t");     a = 10;     if (a == --a)         printf("TRUE 2\t"); }

A. TRUE 1
B. TRUE 2
C. TRUE 1 TRUE 2
D. No output
Answer» D. No output


Discussion

No Comment Found

Related MCQs