下面代码输出的是()
1 int main() { 2 int arr[5] = {1, 2, 3, 4, 5}; 3 int *p = arr + 2; 4 cout << *p << endl; 5 return 0; 6 }
1
2
3
4