C Programming

C Operator

An operator is the symbol that take one or more than one operand and perform operation on it.

Ex.   int a,b, c;

     a=10,b=20;

      c=a+b;   //   Here a, b is operand and + is operator


C provides following types of operators to perform different types of operations:
  • Arithmetic Operators
  • Relational Operators
  • Shift Operators
  • Logical Operators
  • Bitwise Operators
  • Ternary or Conditional Operators
  • Assignment Operator
  • Misc Operator
                                                 C Programming