The assignment operator (operator =) assigns the value/result of an expression to a variable. This works from right to left. In addition to the build-in direct assignment operators, C++ supports “move assignment” for class types. This is a special member function that avoids copying by...