C Operators C language includes a rich set of integrated operators. An operator is a symbol used to perform a certain application of mathematics or logic. Operators are used in C programming language to manipulating the data and variables in applications and are part of mathematic al or logical expressions. In other terms, we may say the operands are handled by an operator. There are major types of operators in C: Arithmetic Operators Relational Operators Logical Operators Bitwise Operators Assignment Operators Conditional Operators These are operators, we know in this c tutorial 1. Arithmetic operators Both simple arithmetic operators are provided by C. The table below shows all of the essential arithmetic operators. Operator Description + adds two operands - subtract second operands from first * multiply two operand / divide numerator by the denominator % remainder of division ++ Increment operator - increases int