填空题

以下程序运行后的输出结果是______。
main()
char a[]="123456789",*p; int i=0;
p=a;
while(*p)
if(i%2==0)*p=’*’;
p++;i++;

puts(a);

【参考答案】

*2*4*6*8*