What is the output of this C code?
void main() { int a = 5; int b = ++a + a++ + --a; printf("Value of b is %d", b); }
Answer: D
No answer description available for this question.