C Programming Language MCQ Operators and Enums in C Language
⚠ Report ✓ Question Verified Copy Link
void main() { int x = 4, y, z; y = --x; z = x--; printf("%d%d%d", x, y, z); }
Learn More MCQ Questions from C Programming Language MCQ Operators and Enums in C Language