What is the output 
#include <iostream>
using namespace std;
int main()
{
    int arr[] = {1, 2, 3, 4};
    int *g = (arr + 1);
    cout << *arr + 8;
    return 0;
}

Posted on by