Assume that address of 0th index of array ‘a’ is : 200.
What is the output -
int a[6] = {1, 2, 3};
cout << a << “ “ << &a;

Options
Error
200 204
200 200
1 200
200 1

200 200
