单项选择题

以下程序
#include<stdio.h>
#include<string.h>
main()
char*p1="abc",*p2="ABC",str[50]="xyz";
strcpy(str+2,strcat(p1,p2));
printf("%ss\n",str);
的输出是______。

A.xyzabcABC
B.zabcABC
C.yzbcABC
D.xyabcABC