Types of Operator in C Programming Notes
In C programming there are several operators are there those are, arithmetic operator, assignment, increment , decrement, logical, conditional, comma, size of , bitwise and others. So get all types of operator in C Programming notes in simple and understandable words. An operator is a symbol that tells the compiler to perform certain mathematical or logical manipulations. In this article, I will be sharing different types of Operator in C Programming Notes . Types of Operators in C Language An operator is a symbol that tells the compiler to perform certain mathematical or logical manipulations. C operators can be classified as 1. Arithmetic operators 2. Relational operators 3. Logical operators 4. Assignment operators 5. Increment or Decrement operators 6. Conditional operator 7. Bit wise operators 8. Special operators Increment and Decrement operators in C The Unary operator ++, --, is used as increment and decrement which acts upon single operand. Increment operator increases th...