填空题

以下程序运行后的输出结果是______。
main()
char c1,c2;
for(c1=’0’,c2=’9’;c1<c2;c1++,c2--) printf("%c%c",c1,c2);
printf("\n");

【参考答案】

0918273645