+ 1
"Every C++ expression is either an lvalue or an rvalue. An lvalue refers to an object that persists beyond a single expression. You can think of an lvalue as an object that has a name. All variables, including nonmodifiable (const) variables, are lvalues. An rvalue is a temporary value that does not persist beyond the expression that uses it." Ref: https://msdn.microsoft.com/en-us/library/f90831hc.aspx
22nd Jun 2017, 8:32 AM
Thoong Lee
Thoong Lee - avatar