下面代码输出的是: int arr[5] = {1, 2, 3, 4, 5}; int *p = arr + 2; cout << *p << endl; A. 1B. 2C. 3D. 4 正确答案:C