#include using namespace std; int main(){ cout << "Hello World\n"; int a = 97; char c = a; cout << "a = " << a << " c = " << c << endl; /* Question 1: We said that c = a. Why does cout print out something different for each? */ a = 360; c = a; cout << "a = " << a << " c = " << c << endl; /* Question 2: What is the ASCII code for lowercase h? Why do we have that number instead of 360? */ a = c; cout << "a = " << a << " c = " << c << endl; /* Question 3: We said c = a, and then a = c. Why did this cause a to change? */ return 0; }