alexisgill4492 alexisgill4492 18-01-2024 Computers and Technology contestada What would the following code print to the screen? (assume all includes)int a = 42;int* ptr = &a;cout << ptr << endl;a) 42b) Nothing would printc) It would print a memory addressd) An error would occur before it could print