✔ Arithmetic Operators (+, -, *, /, %): Used for mathematical calculations.
✔ Relational Operators (==, !=, <, >, <=, >=): Used to compare values.
✔ Logical Operators (&&, ||, !): Used for decision-making.
✔ Bitwise Operators (&, |, ^, ~, <<, >>): Perform operations at the bit level.
✔ Assignment Operators (=, +=, -=, *=, /=, %=): Assign and modify values.
✔ Increment and Decrement Operators (++, --): Used for increasing or decreasing values.
✔ Conditional (Ternary) Operator (? :): Short-hand for if-else conditions.
✔ Comma Operator (,): Used to separate expressions.
✔ Sizeof Operator (sizeof()): Determines the memory size of a variable.