填空题

若有如下程序段:
#include <iostream>
using namespace std;
int main()
char *p="abcdefgh",*r;
long *q;
q=(long *)p;q++;
r=(char *)q;
cout<<r<<end1;
return 0;
该程序的输出结果是______。

【参考答案】

efgh