单项选择题

以下程序段的输出结果是______。
char *p="abodefgh";
p+=3;
printf("%d\n",strlen(strcpy(p,"12345")));

A.8
B.12
C.5
D.7