填空题

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

【参考答案】

0918273645