Update appNew update is available. Click here to update.
Report an issue
Pointers Output
MULTIPLE CHOICE

Find the output :

#include <iostream>
using namespace std;
int main()
{
  int arr[] = {4, 5, 6, 7};
  int *p = (arr + 1);
  cout << *arr + 9;
  return 0;
}
Options: