Operators in C

operator in C language:- C support a rich set of built in operator we have already used several of them such as equal to add(+)Minus(-)  multiplication(*) and division(/) operator is a symbol that tells the computer to perform certain mathematics or logical manipulation. operators are used in program to manipulate data and variables. they usually form a part of mathematical or logical expression.

C operators can be classified into in number of category  these are here:

1 arithmetic operators- 

2.relation operators

3 logical operators

4.assignment operators

5 increment and decrement operators

6.Condition operators

7. Bitwise operators

8. Special operators

Leave a Comment