What is the output of this program? #include using namespace std; int main() { int arr[] = {4, 5, 6, 7}; int *p = (arr + 1); cout

A) 4

B) 5

C) address of arr

D) 7

View Answer
Option – C.