Operators in C

//operators in C programming language //Operators: a symbol used to perform operations in given programming language //Types of operators in C language /*1. Arithmetic Operators 2. Relational Operators 3. Logical Operators 4. Bitwise Operators 5. Logical Operators */ //--------------------------------------- //Arithmetic Operators /*(+): addition (-): subtraction (*): multiplication (/): division (%): modulus - gives remainder */ //--------------------------------------- //Relational Operators /*(==): is equal to (!=): is not equal to (>): greater than (<): less than (>=): greater than or equal to (<=): less than or eq...