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
What are the types of assignment statements?
What is build process in c?
What are pointers? Why are they used?
Are c and c++ the same?
What is the significance of an algorithm to C programming?
What is the return type of sizeof?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What are loops in c?
Are there constructors in c?
What is variable declaration and definition in c?
What are the ways to a null pointer can use in c programming language?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is #define used for in c?
What is the importance of c in your views?
Difference between malloc() and calloc() function?