answersLogoWhite

0

The relational operators are == (equal), != (not equal), < (less than), <= (less than or equal to), > (greater than) and >= (greater than or equal to). All relational operators are boolean, returning true or false depending on the l-value relationship with the r-value, with respect to the operator.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is a relational operators in c?

Relational operators are those operators which shows relation between two operands. e.g. ==, &lt;=,&gt;=,&lt;,&gt;


What is relational operator in c?

Relational operators are those operators which shows relation between two operands. e.g. ==, &lt;=,&gt;=,&lt;,&gt;


What is precedence between relational operator and arithmetic operator?

Arithmetic operators (+, -, *, /, % ) have greater precedence over relational operators (&lt;, &gt;, &lt;=, &gt;=, ==, !=) in C language.


What is a relational operators defined in c?

to compare the two quantities


Example of relational statements in C programming?

You mean relational operators?if (argc


Printf and scanf Operators in C and C plus plus?

No, they are functions. Operators are -> or ++or /=


In C plus plus all false relational expressions have a mathematical value of?

In C++ all false relational expressions have a mathematical value of 0.


How do you compare 2 numbers without using relational operators in c?

using max function


How do you compare two numbers without using any operators in c?

You cannot compare 2 numbers without using relational operators. Certainly, you could subtract them, but you still need to test the result, and that is a relational operator in itself.


What are the different types of operations of c?

c have different types of operations are there these are 1:logical operators 2:conditional 3:arithmetic 4:bit wise operators 5:increment&amp;decrement 6:relational operators 7:assignment operators 8:special operators we can use above operators. we can implementing the operations. suppose logical operators &amp;&amp;,,! by using these we can implement operations


C plus plus bit-wise operators?

Are very useful. Examples: &amp; | ^ ~


What are the basic operator of c write its symbols and meaning?

In C programming, the basic operators include: Arithmetic Operators: + (Addition) - (Subtraction) * (Multiplication) / (Division) % (Modulus) Relational Operators: == (Equal to) != (Not equal to) &gt; (Greater than) &lt; (Less than) &gt;= (Greater than or equal to) &lt;= (Less than or equal to) Logical Operators: &amp;&amp; (Logical AND) || (Logical OR) ! (Logical NOT) These operators are fundamental for performing operations, comparisons, and logical evaluations in C programs.