Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
C++
hard
C++
sequencing and evaluation order
Single-choice MCQ
Consider `i = i++ + 1;` for a plain `int i` in C++17. What is its status?
int i = 0; i = i++ + 1;