I\'m compiling a .c program using gcc compiler on linux,
But , i received the error shown as \"error: lvalue required as left operand of assignment\"
The er
In C, an lvalue is a "left" value, which means a token to which it is valid to assign a value. So the compiler is telling you that the token on the left side of an assignment expression is not valid.