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 is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the need of structure in c?
What is the c value paradox and how is it explained?
How do I read the arrow keys? What about function keys?
What is n in c?
what is different between auto and local static? why should we use local static?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Is c is a middle level language?
Tell me can the size of an array be declared at runtime?
what will be maximum number of comparisons when number of elements are given?
Can we increase size of array in c?
How can a program be made to print the name of a source file where an error occurs?
all c language question
Are c and c++ the same?
Which header file is essential for using strcmp function?