单项选择题

已知数组arr的定义如下:
int arr[5]=1,2,3,4,5;
下列语句中,输出结果不是2的是

A.cout<<*arr+1<<endl;
B.tout<<*(arr+1)<<endl;
C.cout<<arr[1]<<endl;
D.eout<<%arr<<endl;