What is the output of this C code? void main() { int x = 4, y, z; y = --x; z = x--; printf("%d%d%d", x, y, z); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
None.
Be The First To Comment