填空题

有以下程序:
#include <stdio.h>
fun(int x)
if (x/2>0) fun(x/2);
printf("%d",x);

main()
fun(8),printf("\n");
程序运行后的输出结果是______。

【参考答案】

1 2 4 8