有以下程序: #include<string.h> main() char p[20]='a','b','c','d',q[]= abc ,r[]= abcde ; strcpy(p+strlen(q),r);strcat(p,q); printf( %d%d n ,sizeof(p),strlen(p)); 程序运行后的输出结果是______。
有以下程序:
#include<string.h>
main()
char p[20]='a','b','c','d',q[]="abc",r[]="abcde";
strcpy(p+strlen(q),r);strcat(p,q);
printf("%d%d\n",sizeof(p),strlen(p));
程序运行后的输出结果是______。