填空题

以下程序的输出结果是______。 #include<stdio.h> main() { char*p="abcdefg",*r; long*q; q=(long*)p; q++; r=(char*)q; printf("%s\n",r); }

【参考答案】

efg