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
Disadvantages of C language.
Explain what is the advantage of a random access file?
What is break in c?
What is difference between static and global variable in c?
Why should I prototype a function?
What type is sizeof?
Explain high-order and low-order bytes.
What is a null pointer in c?
What is external variable in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
When should structures be passed by values or by references?
What is a char c?
Which programming language is best for getting job 2020?
formula to convert 2500mmh2o into m3/hr
What is getch() function?