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

Answer
208
