Relational Operators in C language

A relational operator checks relation between two operands. it returns true(1) or false(0) Boolean value in result. these are binary operators.
एक रिलेशनल ऑपरेटर दो ऑपरेंड के मध्य सम्बन्ध की जाँच करता है। यह परिणाम स्वरुप बूलियन वैल्यू 1 TRUE या 0 FALSE प्रदान करता है। ये बाइनरी ऑपरेटर होते है।    
Let variable A=10 and B=5 
माना कि A=10 एवं B=5
Following table represents operators,their description and example- 
निम्न तालिका में ऑपरेटर,उसका संक्षिप्त विवरण एवं उदाहरण दर्शाए गए है -
OperatorDescriptionExample
==Equality
(A == B) false
!=Inequality(A != B) true
>Greater than(A > B) true
<Lesser than(A < B) false
>=Greater than or Equal(A >= B) true
<=Lesser Than or Equal(A <= B) false

Comments

Popular posts from this blog

C Language Topics in Hindi and English

Top High-Paying Tech Skills to Learn in 2025

Advanced C Programming Language IMP Questions for BSc/BA/BCom/BCA/BE/BTech/MSc/MCA (CS/IT) Students