填空题

执行下面程序段时输出suet,请填空。
main()
static char a[]="student";
char *p;
for(p=a;p< 【8】 ;p+=2)
putchar(*p);

【参考答案】

a+strlen(a)或strlen(a)+a