Lvalue = ???

What does lvalue mean?
what does the error "Lvalue required" mean.
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
and why do we encounter that error??
You've used something other than an l-value where you need to have one.
@framework and @ Zhuge
Thanx
Topic archived. No new replies allowed.