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 / sunil v r
5,2,1
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is volatile variable how do you declare it?
What is a pointer on a pointer in c programming language?
What does & mean in scanf?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
What is #define in c?
What is else if ladder?
How can I send mail from within a c program?
Explain about C function prototype?
What is p in text message?
How do you determine the length of a string value that was stored in a variable?
Is register a keyword in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Why do we use return in c?
Write a program to print factorial of given number without using recursion?