OPERATORS IN C
OPERATORS: Operators are the foundation of any programming language.We can define operators as a symbols that help us to perform sepcific mathematical and logical computations on operands .In other words we can say that an operator operators the operands .For example , ‘+’ is an operator used for addition, as shown below: Ex:- c = a + b; Here, ‘+’ is the operator known as the addition operator and ‘a’ and ‘b’ are operands. The addition operator tells the compiler to add both of the operands ‘a’ and ‘b’. C has many built-in operators and can be classified into 5 types: 1. Arthematic operator. 2. Relational operator. 3. Logical operator. 4. Bitwise operator. ...