Equality and Relational Operators
Operators:
equal == x == y
not equal != x != y
greater than > x > y
less than < x < y
greater than or equal >= x >= y
less than or equal <= x <= y
if (x < y)
printf("%f is smaller than %f\n", x, y);
Previous slide
Next slide
Back to first slide
View graphic version