/* What does the following program print out? */ #include using namespace std; int main(){ int a = 50; int b = *&a; *&b = 400; cout << *&*&*&*&*&*&*&*&*&*&*&*&a << endl; cout << b << endl; return 0; }