填空题

以下程序的输出结果是______。
# include <stdio.h>
main()
int n=12345, d;
while(n!=O) d=n%10; printf("%d",d); n/=10;

【参考答案】

54321