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 / divya
0
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
how to count no of words,characters,lines in a paragraph.
write a c program to calculate sum of digits till it reduces to a single digit using recursion
How can you increase the size of a dynamically allocated array?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Is main an identifier in c?
Differentiate between the = symbol and == symbol?
How can I write a function analogous to scanf?
What is the difference between new and malloc functions?
How to get string length of given string in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is sizeof array in c?
How do you determine a file’s attributes?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
what are # pragma staments?
What is the scope of local variable in c?