Q115
What will be the output of the following C code? #include int main() int a = 1; if (a--) printf("True"); if (a++) printf("False");
A.
True
AnswerB.
False
C.
True False
D.
No Output
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board