Operators are symbols used to perform operations on variables and values.
Arithmetic operators are used to perform common mathematical operations.
+ (Addition): Adds together two values. x + y- (Subtraction): Subtracts one value from another. x - y* (Multiplication): Multiplies two values. x * y/ (Division): Divides one value by another. x / y% (Modulus): Returns the division remainder. x % yAssignment operators are used to assign values to variables.
int x = 10; x += 5; // Same as x = x + 5
Comparison operators are used to compare two values, returning a boolean (true or false).
== (Equal to)!= (Not equal)> (Greater than)< (Less than)Operators are the building blocks of any logic in your C++ applications.
Which arithmetic operator is used to find the remainder of a division?