Lvalue = ???

May 3, 2012 at 8:12pm
What does lvalue mean?
what does the error "Lvalue required" mean.
May 3, 2012 at 8:15pm
closed account (zb0S216C)
An L-Value is an expression that can appear on the left & right-hand side of an assignment operator. These are usually objects that can be modified. An R-Value is an expression that can only appear on the right-hand side of an assignment operator. These are usually literals (constants), such as 10, 1.0, "String", and 'A'.

Wazzak
May 3, 2012 at 8:21pm
and why do we encounter that error??
May 3, 2012 at 8:22pm
You've used something other than an l-value where you need to have one.
May 3, 2012 at 8:24pm
@framework and @ Zhuge
Thanx
Topic archived. No new replies allowed.