Relational Operators in C++

There are four relational operators in C Plus Plus (C++). They are: Operator Meaning < less than > greater than <= less than or equal to >= greater than or equal to These operators all fall within the same precedence group, which is lower than the arithmetic and unary operators. The associativity of these operators is left to right. Closely associated with the above mentioned relational operators are the following two equality operators: Operator Meaning == equal to != not equal to The equality operators fall into a separate precedence group beneath the relational operators. These operators also have a left-to-right associativity. These six operators are used to form logical expressions, which represent conditions that are either true or false. The resulting expressions will be of type integer, since true is represented in C++ by the integer value 1 and false by the value 0. Example: Suppose that a, b...