fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
0 1 2 5 10...Please don't post the wrong answer.