सी प्रोग्रामिंग में ऑपरेटर (Operators in C Programmings)
एक ऑपरेटर एक प्रतीक है जो एक चर या मूल्य पर काम करता है। Arithmetic, Relational, Conditional, Assignment, Logical, Bitwise, Increment and Decrement आदि ऑपरेटरों के प्रकार हैं।
An operator is a symbol which operates on a variable or value. There are types of operators like Arithmetic, Relational, Conditional, Assignment, Logical, Bitwise, Increment and Decrement operators etc.
अर्थमैटिक ऑपरेटर (Arithmetic Operator)
+,-,*,/,% etc.
रिलेशनल ऑपरेटर (Relational Operator)
>,<,>=,<=, != etc.
कंडीशनल ऑपरेटर (Conditional Operator)
?,:
असाइनमैंट ऑपरेटर (Assignment Operator)
=
लॉजीकल ऑपरेटर (Logical Operator)
Logical AND(&&)
Logical OR(||)
Logical NOT (!)
बिटवाइज ऑपरेटर (Bitwise Operator)
Bitwise AND (&)
Bitwise OR (|)
Bitwise Left Shift (<<)
Bitwise Right Shift (>>)
इन्क्रीमेंट और डिक्रीमेंट (Increment and Decrement)
Increment (++)
Decrement (--)
C में कुछ विशेष प्रकार के आपरेटर भी मौजूद होते हैं।
Some special types of operators are also present in C.
sizeof() Operator
Pointer operator
Reference operator
आगे हम सबसे पहले इन्हीं ऑपरेटरों को Example Program के माध्यम से सीखेंगे ।
0 comments:
Post a Comment