esdancer41 esdancer41 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;*ptr = 12;a = 4;cout << *ptr << endl;a) 42b) 12c) 4d) An error would occur before it could print