How many types of Operator in C Language
Ans 11 Types of Operator
- Arithmetic Operators (+,-,*,/,%)
- Comparison / Relational Operators (==,!=,>,<,>=,<=)
- Logical Operators (&&,||,!)
- Bitwise Operators (~,<<,>>)
- Assignment Operators (=,+=,_=,*=,/=)
- Miscellaneous operators (sizeof,&,*,?:)
- Increment Decrement (a++,a–,++a,–a)
- Operator Precedence
- Identity Operator.
- Conditional Operator.
- Comma Operators.