单项选择题

以下程序运行后的输出结果是
#include<stdio.h>
main()
 char s[]="rstuv";
 printf("%c\n", *s+2);

A.tuv
B.字符t的ASCII码值
C.t
D.出错