以下程序的输出结果是 【 13 】 。
#include <stdio.h>
void fun(int x)
{ if(x/2>0) fun(x/2);
printf("%d",x);
}
main()
{ fun(3); printf("\n");}