Update appNew update is available. Click here to update.
Topics

Pointers Output

Easy
0/10

Problem statement

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: One or more answers may be correct