#include main() { char c1 = 'A', // The ASCII code of 'A' is 65. c2; int i; float x; c2 = c1 + 5; // 'F' (ASCII code = 65+5 = 70) is stored in c2. cout << c2 << endl; x = -0.25; i = c2 * x; // -17 [integer part of 70*(-0.25) = -17.5] is ... cout << i << endl; // ... stored in i. return 0; }