GOEDUHUB Tutorials    ||    AI    ||    ML  ||    NLP    ||    OpenCV    ||    Python    ||    OOPS    ||    DBMS    ||    DSA    ||    JAVA    ||    Linux    ||    C Programming
7976731765 Go To Your University       ||       Placement Preparation       ||        Technical-MCQ and Interview Questions
Online Live Classes Youtube Live Link
0 like 0 dislike
14 views
in Tutorial & Interview questions by Goeduhub's Expert (8.1k points)

Relational operators check if a specific relation between two operands is true. The result is evaluated to 1 (which means true) or 0 (which means false). This result is often used to affect control flow (via if, while, for), but can also be stored in variables.

1 Answer

0 like 0 dislike
by Goeduhub's Expert (8.1k points)
 
Best answer

Relational operators check if a specific relation between two operands is true. The result is evaluated to 1 (which means true) or 0 (which means false). This result is often used to affect control flow (via if, while, for), but can also be stored in variables.

Equals "==" 

Checks whether the supplied operands are equal.

1 == 0;                   /* evaluates to 0. */

== 1;                 /* evaluates to 1. */

int x = 5; 

int y = 5;

int *xptr = &x, *yptr = &y;

xptr == yptr;        /* evaluates to 0, the operands hold different location addresses. */

*xptr == *yptr; /* evaluates to 1, the operands point at locations that hold the same value. */

Attention: This operator should not be confused with the assignment operator (=)! 

Not equals "!=" 

Checks whether the supplied operands are not equal.

1 != 0;                          /* evaluates to 1. */

!= 1;                    /* evaluates to 0. */

int x = 5; int y = 5;

int *xptr = &x, *yptr = &y;

xptr != yptr;        /* evaluates to 1, the operands hold different location addresses. */

*xptr != *yptr; /* evaluates to 0, the operands point at locations that hold the same value. */

This operator effectively returns the opposite result to that of the equals (==) operator. 

Not "!" 

Check whether an object is equal to 0. 

The ! can also be used directly with a variable as follows:

!someVal

This has the same effect as:

someVal == 0

Greater than ">" 

Checks whether the left hand operand has a greater value than the right hand operand

5 > 4                             /* evaluates to 1. */

5                        /* evaluates to 0. */

4                        /* evaluates to 0. */

Less than "<" 

Checks whether the left hand operand has a smaller value than the right hand operand

5 < 4                              /* evaluates to 0. */

5                        /* evaluates to 1. */

4                       /* evaluates to 0. */

Greater than or equal ">=" 

Checks whether the left hand operand has a greater or equal value to the right operand.

5 >= 4                                 /* evaluates to 1. */

>= 5                          /* evaluates to 0. */

>= 4                        /* evaluates to 1. */

Less than or equal "<=" 

Checks whether the left hand operand has a smaller or equal value to the right operand.

5 <= 4                               /* evaluates to 0. */

<= 5                         /* evaluates to 1. */

<= 4                        /* evaluates to 1. */

Related questions

0 like 0 dislike
1 answer 19 views
0 like 0 dislike
1 answer 15 views
0 like 0 dislike
0 answers 21 views
0 like 0 dislike
1 answer 23 views
0 like 0 dislike
1 answer 22 views

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
 Placements:   List of companies | Logical Reasoning Questions | Quantitative Aptitude Questions | General English Questions | Technical-MCQ and Interview Questions
 Important Lists: List of NITsList of IITsList of Exams After Graduation | List of Engineering Entrance Examinations (UG/PG)College ReviewsCollege Fest, Events & WorkshopsKnowledge ShareTrainees/Interns After 15-04-2020
Exams & Cutoffs: JEE Main | JEE Advanced | GATE | IES | ISRO List of PSUs || Cutoff-GATECutoff_IIT-JEECS-ScopeECE ScopeEE-Scope
 Download Previous Year Papers For:  GATE | IES | RAJASTHAN TECHNICAL UNIVERSITY (RTU-Kota)RPSC Technical Exams | ISRO
...