1.11- Relational Operator In C Programming Language | c language tutorial for beginners



1.11- Relational Operator In C Programming Language | c language tutorial for beginners

1.11- Relational Operator In C Programming Language | c language tutorial for beginners

1.11- Relational Operator In C Programming Language | c language tutorial for beginners

Playlist:
C Programming Language Practical Tutorials | All University Exam- UGC NET- Gate C Language Tutorials
https://www.youtube.com/playlist?list=PLL8qj6F8dGlRAbtKXm-JS0PGHwljufhPv

[With Notes] C Programming Language Tutorials- All University Exam- UGC NET- Gate C Language Tutorials
https://www.youtube.com/playlist?list=PLL8qj6F8dGlRJ0yYjJGtHrDQjEx56JwK4

#cprogrammingLanguage
#cprogramming
#cprogrammingLanguageinhindi
#cprogrammingLanguage

#ugcnetcprogrammingLanguage
#gatecprogrammingLanguage
#cprogrammingLanguagetutorials
#cprogrammingtutorials
#cprogrammingLanguagelectures
#cprogramminglectures

c language in Hindi,
c programming in hindi,
learn c in hindi,
c in hindi,
c language tutorial for beginners in hindi,
c programming for beginners in hindi,
c language full course in hindi,
learn c programming in hindi,

1.2- What Is C Preprocessor Directives in c language | c programming language tutorials https://youtu.be/CojNdPpUPr0

1.3- Execution Phases in C Programming Language | c programming language https://youtu.be/PfGBd6oUWmg

1.4- Escape Sequences In C Language | C Programming Language For Beginners https://youtu.be/gXTFZfDIE4c

1.5- printf() function In C Programming Languages | c language tutorial for beginners https://youtu.be/x_i3OQILjd0

1.6- scanf() function In C Programming Languages | c language tutorial for beginners | scanf() in c https://youtu.be/viuwkFNq2oI

1.7- sizeof() Function In C Programming Language | c language tutorial for beginners https://youtu.be/7BfL4sE63Rw

Relational Operator in C Programming:
In C Programming we can compare the value stored between two variables and depending on the result we can follow different blocks using Relational Operator in C.
Relational operators in c programming is used for specifying the relation between two operands such as greater than , less than and equals.Relational operators are used for the comparison of two values to understand the type of relationship a pair of number shares. For example, less than, greater than, equal to etc. Let’s see them one by one Equal to the operator: Represented as ‘==’, the equal to operator checks whether the two given operands are equal or not. If so, it returns true. Otherwise, it returns false. For example, 5==5 will return true.
Not equal to the operator: Represented as ‘!=’, the not equal to operator checks whether the two given operands are equal or not. If not, it returns true. Otherwise, it returns false. It is the exact boolean complement of the ‘==’ operator. For example, 5!=5 will return false.
Greater than operator: Represented as ‘greater than, the greater than operator checks whether the first operand is greater than the second operand or not. If so, it returns true. Otherwise, it returns false. For example, 6greater than5 will return true.
Less than operator: Represented as ‘‘, the less-than operator checks whether the first operand is lesser than the second operand. If so, it returns true. Otherwise, it returns false. For example, 6 less than 5 will return false.

Comments are closed.