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 / vinay
10,5,2,1
after that it terminated.
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the use of static variable in c?
What is use of bit field?
Is there a way to jump out of a function or functions?
Explain function?
What is ## preprocessor operator in c?
How can I change their mode to binary?
How is a pointer variable declared?
What is C language ?
What is the use of parallelize in spark?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is difference between stdio h and conio h?
Explain what are run-time errors?
Write a program to find the biggest number of three numbers in c?
What is the sizeof () a pointer?
What are header files why are they important?