What is the output?
#include iostream
using namespace std;
int main()
{
int a = 6, b = 4, c = 2;
int *arr[ ] = {&a, &b, &c};
cout arr[1];
return 0;
}

Posted on by