单项选择题

有以下程序
#include<stdio.h>
main()

char ch[]="uvwxyz",*pc;
pc=ch;
printf("%c\n",*(pc+5));

程序运行后的输出结果是______。

A.z
B.0
C.元素ch[5]的地址
D.字符y的地址