以下程序的输出结果是 _[9]_______ .
#include <stdio.h>
main()
{ int n=12345,d;
while(n!=0){ d=n%10; printf("%d",d); n/=10;}
}