单项选择题

下列程序运行后的输出结果是
main( )
char arr[2][4];
strepy(arr,"you");strepy(arr[1],"me");
arr[0][3]='&';
printf("%s\n", arr):

A.you&me
B.you
C.me
D.err