Vidyalelo
C Programming · Q115

Control Structures

Programming · C Programming · question 115

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
Answer
B.
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