填空题

以下程序的输出结果是 【12】
main()
char *p=“abodefgh”,*r;
long *q;
q=(long*)p;
q++;
r=(char*)q;
printf(“%s\n”,r);

【参考答案】

efgh