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); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
None.
Be The First To Comment