What happens when you attempt to compile and run the following code?
#include
using namespace std;
int main()
{
int x=2, *y, z=3;
y = &z;
cout<return 0;}
return 0;
}
It prints: 36
It prints: 14
It prints: 16
Compilation error
Submit