📚 Practice Mode
Java and C++ Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
1)main() { int i = 5; printf(“%d %d %d %d %d”,i++,i--,++i,--i,i); }
- 5 6 6 5 5
- 6 5 6 5 5
- 5 5 6 5 5
- 4 5 5 4 5
Java and C++ Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1)main() { int i = 5; printf(“%d %d %d %d %d”,i++,i--,++i,--i,i); }