填空题

以下程序的输出结果是(  )。 #include #include #include mian() { char *p, *q, *r; p=q=r=(char *)malloc(sizeof(char)*20); strcpy(p,”attaboy,welcome!”); printf(“%c%c%c\n”,p[11], q[3], r[4]); free(p); }

【参考答案】

cab