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 / guest
0 1 2 5 10
| Is This Answer Correct ? | 23 Yes | 3 No |
Post New Answer View All Answers
What's a good way to check for "close enough" floating-point equality?
What is meant by errors and debugging?
What is an operator?
What is the difference between pure virtual function and virtual function?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Explain 'bit masking'?
Is a pointer a kind of array?
What is declaration and definition in c?
is it possible to create your own header files?
Explain the advantages and disadvantages of macros.
how do you execute a c program in unix.
Why does notstrcat(string, "!");Work?
Which programming language is best for getting job 2020?
Differentiate between static and dynamic modeling.