What does "expected primary expression before <" mean? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does "expected primary expression before <" mean?

I'm constantly getting the message shown above. Can anybody help? I'm trying to write an "if" statement like this: if (total >=1 && <2) { cout << "BURN THIS MONSTROSITY!" <<endl; }

2nd Sep 2016, 3:45 PM
Indie Geek
Indie Geek - avatar
1 Answer
+ 1
You forgot the left operand for the <. if ((total >=1) && (total < 2))
2nd Sep 2016, 4:43 PM
Zen
Zen - avatar