Google News
logo
C-Language - Interview Questions
What is Relational Operators in C ?
Relational Operators are used to find the relation between two variables, and also used to compare arithmetic, logical and character expressions. The value of a relational expression is either one or zero, if the result is one, then the specified relation is true or if the result is zero then the specified relation is false.

Example :
10 < 20 is true 
20 < 10 is false
Advertisement