"lvalue required as left operand of assignment " error
- by Aidan
Hey guys,
The following code produces a "lvalue required as left operand of assignment"
if( c >= 'A' && c <= 'Z' || c = " " || c = ",") {
I assume I'm writing this wrong, what is wrong? and how would I write it correctly?
I would appreciate any help! :)
Thanks.