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));