carrkatlyn8509 carrkatlyn8509 18-01-2024 Computers and Technology contestada What would the following code print to the screen? (assume all includes)int a[5] = {3, 17, 42, 99, 1};int* ptr = &a[2];cout << *ptr << endl;