sri


{ City } mysore
< Country > india
* Profession * student
User No # 18125
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 6
Questions / { sri }
Questions Answers Category Views Company eMail




Answers / { sri }

Question { NDS, 17540 }

fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}

above function is called as:
fun(10);

what will it print?



}


Answer

0

Is This Answer Correct ?    1 Yes 6 No

Question { NDS, 17540 }

fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}

above function is called as:
fun(10);

what will it print?



}


Answer

0 1 2 5 10

Is This Answer Correct ?    3 Yes 0 No