#include main() { int a = 17, b = 5; float x, y; char ch = 'A'; // Compare the following: cout << (float) a / b << endl; // 3.4 will be displayed. cout << a / b << endl; // 3 will be displayed. x = a / (float) b; // 3.4 will be stored in x. y = a / b; // 3 will be stored in y. cout << "x=" << x << " y=" << y << endl; cout << ch << endl; // 'A' will be displayed. cout << (int) ch << endl; // 65 (ASCII of 'A') will be displayed. return 0; }