- A 10 5 4 4
- B 10 5 4 3
- C 10 5 3 3
- D 10 5 3 4
C Programming Language MCQ Operators and Enums in C Language
⚠ Report ✓ Question Verified Copy Link
#include void main() { int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z); }
Learn More MCQ Questions from C Programming Language MCQ Operators and Enums in C Language