谁能给我解释一下这个代码,看不懂他的运行步骤
#include <stdio.h>#include <string.h>
void main(){
char p[20]={'a','b','c','d'},q[]="abc",r[]="abcde";
strcat(p,r);
strcpy(p+strlen(q),q);
printf("%d\n",p+strlen(p));
return 0;
}
2019-01-13 14:04
2019-01-13 14:05
2019-01-13 14:12
2019-01-13 14:41
2019-01-13 15:02
2019-01-13 17:33
2019-01-13 18:02
2019-01-13 18:18
2019-01-13 18:52
2019-01-13 19:48