What would the following code print to the screen? (assume all includes)
int a = 42;
int* ptr = &a;
cout << ptr << endl;
a) 42
b) Nothing would print
c) It would print a memory address
d) An error would occur before it could print