fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}
above function is called as:
fun(10);
what will it print?
}
Answer Posted / raj
0 1 2 5 10...Please don't post the wrong answer.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What was noalias and what ever happened to it?
What is nested structure?
What is the process to create increment and decrement stamen in c?
What's the total generic pointer type?
How macro execution is faster than function ?
What is meant by keywords in c?
What is the use of typedef in c?
What is oops c?
Tell us two differences between new () and malloc ()?
Is null always defined as 0(zero)?
What is s or c?
How to write a multi-statement macro?
What is #error and use of it?
Can we access array using pointer in c language?
How can I do graphics in c?