Unicobabychem Unicobabychem 25-01-2017 Computers and Technology contestada What is the output of the following code? int *p; int x; x = 12; p = &x; cout << x << ", "; *p = 81; cout << *p << endl;