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
Explain what is a pragma?
How are portions of a program disabled in demo versions?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is the advantage of a random access file?
What is c value paradox explain?
Which is the memory area not included in C program? give the reason
What are dangling pointers in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What are local variables c?
What is bubble sort in c?
What do you know about the use of bit field?
Explain the binary height balanced tree?
What is structure data type in c?
Give basis knowledge of web designing ...
Explain About fork()?