Answer:
Output will be: 2
Step-by-step explanation:
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
int i, array[5];
for (i = 0; i < 5; i++)
array[i] = i * 11;
printf("%p\\", array); // it will print base address(memory address) of machine where array is stored
printf("%d\\", (*array) + 2); // it will print value at base address i.e. 0 in this case and add 2 in it
// then prints it.
return 0;
}