notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

Lvalue.md (189B)


      1 # lvalue
      2 
      3 cs202 W14 L16
      4 
      5 **Definition:**  An lvalue is a value that is not temporary and cannot be moved.
      6 
      7 An example of an lvalue is as follows:
      8 
      9 ```cpp
     10 
     11 int x = 5; // x is an lvalue
     12 
     13 ```