0
Hi one question what is Lvalue and what is Rvalue please information thanks
All
2 Respostas
+ 1
Rvalues are any values put at the right hand side of a variable declaration/initialization.
Eg: int x=12; //12 is the Rvalue
Lvalues are the opposite.
Eg: int x=12; //x is the Lvalue;
+ 1
Thanks dear