单项选择题

有以下程序:
# include<string.h>
main()
char str[][20]="Hello","Beijing",*p=str;
printf("%d\n",strlen(p+20));

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

A、0
B、5
C、7
D、20