InterviewSolution
Saved Bookmarks
| 1. |
Differentiate between L-value and R-value of a variable. |
|
Answer» An l-value is an expression that refers to such an object. The original definition of an l-value was "an object that can appear on the left-hand side of an assignment". ... In this case, the l-value is implicitly CONVERTED to an r-value. HOWEVER, you cannot PLACE an r-value in a CONTEXT that REQUIRES an l-value |
|