fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Guest & Raj is correct....... Please don't post the wrong answer if u r not clear about this