ASSIGNMENT OPERATORS

Used to assign values to variables.

 

int x = 10, y = 5;

x += y;  // Equivalent to x = x + y;