填空题

以下程序运行后输出的结果是______。
void main()

char c1,c2;
for(c1=’0’,c2=’9’;c1<c2;c1++,c2--)printf("%c %c",c1,c2);
printf("\n");

【参考答案】

0918273645