#include<stdio.h>
int main(){
int a = 20;
int b = 10;
int c;
// == operator
if(a == b){
printf(“a is equal to b
”);
}else{
printf(“a is not equal to b
”);
}
// > operator
if(a > b){
printf(“a is greater than b
”);
}else{
printf(“a is not greater than b
”);
}
// < operator
if(a < b){
printf(“a is less than b
”);
}else{
printf(“a is not less than b
”);
}
// != Opertor
if(a != b){
printf(“a is not equal to b
”);
}else{
printf(“a is equal to b
”);
}
// >= orperator
if(a >= b){
printf(“a is greater than or equal to b
”);
}else{
printf(“a is not greater than or equal to b
”);
}
// <= operator
if(a <= b){
printf(“a is less than or equal to b
”);
}else{
printf(“a is not less than or equal to b
”);
}
}
// Working of relational operators
#include <stdio.h>
int main()
{
int a = 5, b = 5, c = 10;
printf("%d == %d is %d
", a, b, a == b);
printf("%d == %d is %d
", a, c, a == c);
printf("%d > %d is %d
", a, b, a > b);
printf("%d > %d is %d
", a, c, a > c);
printf("%d < %d is %d
", a, b, a < b);
printf("%d < %d is %d
", a, c, a < c);
printf("%d != %d is %d
", a, b, a != b);
printf("%d != %d is %d
", a, c, a != c);
printf("%d >= %d is %d
", a, b, a >= b);
printf("%d >= %d is %d
", a, c, a >= c);
printf("%d <= %d is %d
", a, b, a <= b);
printf("%d <= %d is %d
", a, c, a <= c);
//Output
//5 == 5 is 1
//5 == 10 is 0
//5 > 5 is 0
//5 > 10 is 0
//5 < 5 is 0
//5 < 10 is 1
//5 != 5 is 0
//5 != 10 is 1
//5 >= 5 is 1
//5 >= 10 is 0
//5 <= 5 is 1
//5 <= 10 is 1
return 0;
}
Logical Operators:
They are used to combine two or more conditions/constraints or to complement
the evaluation of the original condition under consideration. They are
described below:
Logical AND operator: The ‘&&’ operator returns true when both the conditions
under consideration are satisfied. Otherwise it returns false. For example, a
&& b returns true when both a and b are true (i.e. non-zero).
Logical OR operator: The ‘||’ operator returns true even if one (or both) of
the conditions under consideration is satisfied. Otherwise it returns false.
For example, a || b returns true if one of a or b or both are true
(i.e. non-zero). Of course, it returns true when both a and b are true.
Logical NOT operator: The ‘!’ operator returns true the condition in
consideration is not satisfied. Otherwise it returns false. For example,
!a returns true if a is false, i.e. when a=0.