#include #include using namespace std ; int main(void) { int x1 = 100 ; char ch1 = 'a' ; //Explicit Cast ch1 = (char) x1 ; //Implicit cast x1 = ch1 ; cout << "ch1" << ch1 << endl ; cout << "x1" << x1 << endl ; return 0; }