单项选择题

请读程序片段:
char str[]="ABCD",* p =str;
printf("%d\n",*(p+4));
上面程序片段的输出结果

A.68
B.0
C.字符'D'的地址
D.不确定的值