Well done!
You have completed Fundamental Programming Concepts and Operators Quiz!
Quiz Question 1 of 5
Given the code snippet below, what is the significance of x++
in terms of L-value and R-value operations?
int x = 5;
int y = x++;
Choose the correct answer below:
-
A
x++ uses x as both an L-value and R-value simultaneously, depending on the expression order.
-
B
x++ increments x before assigning it to y, making x an L-value and y an R-value.
-
C
x++ increments x after assigning its value to y, making x an R-value and y an L-value.
-
D
x++ uses the value of x before incrementing it, so x is an R-value when assigned to y, and then x becomes an L-value.