There are two kinds of expressions in Objective-C
1. RValue
The term rvalue refers to a data value that is stored at some address in memory
2. LValue
Expressions that refer to a memory location is called "lvalue" expression. An lvalue may appear as
either the left-hand or right-hand side of an assignment
I didn't get it . can someone explain it to me?