Relational Operators Following table shows all the relational - TopicsExpress



          

Relational Operators Following table shows all the relational operators supported by C language. Assume variable A holds 10 and variable B holds 20, then: Show Examples Operator Description Example == Checks if the values of two operands are equal or not, if yes then condition becomes true. (A ==is not true. != Checks if the values of two operands are equal or not, if values are not equal then condition becomes true. (A !=is true. > Checks if the value of left operand is greater than the value of right operand, if yes then condition becomes true. (A >is not true. < Checks if the value of left operand is less than the value of right operand, if yes then condition becomes true. (A = Checks if the value of left operand is greater than or equal to the value of right operand, if yes then condition becomes true. (A >=is not true.
Posted on: Sun, 22 Sep 2013 17:17:58 +0000

Trending Topics



Recently Viewed Topics




© 2015