Home » C Programming » Expressions

What will be the output of the program? #include<stdio.h> int main() { int x=4, y, z; y = --x; z = x--; printf("%d, %d, %d\n", x, y, z); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!