Assignment Operators in C++

There are several different assignment operators in C Plus Plus (C++). All of them are used to form assignment expressions, which assign the value of an expression to an identifier. The most commonly used assignment operator is =. Assignment expressions that make use of this operator are written in the form: identifier = expression where, identifier generally represents a variable, and expression represents a constant, a variable or a more complex expression. Example: a = 3; x = y; sum = a + b; In the above statements, the first assignment expression causes the integer value 3 to assigned to the variable a, and the second assignment causes the value of variable y to be assigned to x. In the third assignment, result in the value of the arithmetic expression is assigned to the variable sum i.e., the value of a + b is assigned to sum. Remember that the...