What is the output of this program 
    #include <iostream>
    int main()
    {
        int a = 1, b = 2, c = 3;
        int *arr[ ] = {&a, &b, &c};
        cout << arr[1];
        return 0;
    }

Posted on by