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
How can you find the exact size of a data type in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is typedef struct in c?
What is break in c?
Explain high-order and low-order bytes.
What does c in a circle mean?
what are the different storage classes in c?
What is calloc malloc realloc in c?
How can I access an I o board directly?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
How do we print only part of a string in c?
What does s c mean in text?
Write a program to use switch statement.
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What are pointers? What are stacks and queues?