#include main() { int a, b; char c; a = 14; a -= 3; // 11 will be assigned to a. cout << a << endl; b = 7; b += a * 3; // 7 + 11 * 3 = 40 will be assigned to b. cout << b << endl; c = 'A'; c += 3; // 'D' will be assigned to c. cout << c << endl; return 0; }