What != stands for in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What != stands for in c++

!=

24th Mar 2018, 8:58 PM
CosmoBrain
CosmoBrain - avatar
5 Answers
+ 10
not equal 🐔
24th Mar 2018, 10:13 PM
voja
voja - avatar
+ 5
Same like in every language. Not operator
24th Mar 2018, 9:08 PM
Toni Isotalo
Toni Isotalo - avatar
+ 4
"not equal"
24th Mar 2018, 9:08 PM
Alex
Alex - avatar
+ 4
'Not equal to' operator, some examples: if (9 != 9) - false if (9 != 4) - true if (424 != 231) - true
24th Mar 2018, 10:08 PM
TurtleShell
TurtleShell - avatar
+ 2
not equal to
24th Mar 2018, 9:51 PM
Adam
Adam - avatar