问题 填空题

以下程序的输出结果是【12】 。 main() { char *p="abcdefgh",*r; long *q; q=(long*)p; q++; r=(char*)q; printf("%s\n",r); }

答案

参考答案:efgh

改错题
填空题