Operators in C Operators Used for performing mathematical operations like addition, subtraction, multiplication, division, and modulo. Examples: +, -, *, /, %. Used to compare two values. Examples include: < (less than), > (greater than), == (equal to), <= (less than or equal to), >= (greater than or equal to), != (not equal to). Used to assign values to variables. Examples: = (simple assignment), += (add and assign), -= (subtract and assign), *= (multiply and assign), /= (divide and assign), %= (modulus and assign). Arithmetic Operators Relational Operators Assignment Operators Used to perform bit-level operations. Examples: & (bitwise AND), | (bitwise OR), ^ (bitwise XOR), ~ (bitwise NOT), << (left shift), >> (right shift). Bitwise Operators Used to combine multiple conditions. Examples: && (logical AND), || (logical OR), ! (logical NOT). Logical Operators Used with only one operand. Examples: ++ (increment), -- (decrement), sizeof (size of variable), & (address of), * (value at address). Unary Operators