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
Explain argument and its types.
What is the use of a conditional inclusion statement in C?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
Write a program for finding factorial of a number.
What does == mean in texting?
What is the size of empty structure in c?
write a program in c language to print your bio-data on the screen by using functions.
Is there a way to jump out of a function or functions?
What is a substring in c?
What are the types of pointers in c?
Are the expressions * ptr ++ and ++ * ptr same?
How do you view the path?
When should volatile modifier be used?
write a program to copy the string using switch case?
how to construct a simulator keeping the logical boolean gates in c