+ 3
What are these symbol known <,>,=<,=>,! <,== ?
3 Answers
+ 10
< less then
> more then
=< equal or less then
=> equal or greater then
!< not less then
== equal to
+ 6
Those are Relational operators.
For more info on operators in C language, check this out:
https://www.studytonight.com/c/operators-in-c.php
+ 1
'!' means 'not', so:
!=
means:
not equal
and:
!variablename
is equivalent to:
variablename != 0