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 / sunil v r
5,2,1
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are valid signatures for the Main function?
Can you please explain the difference between exit() and _exit() function?
Which is best linux os?
Explain how do you determine whether to use a stream function or a low-level function?
What is scanf_s in c?
what does static variable mean?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
In which header file is the null macro defined?
How to define structures? ·
Not all reserved words are written in lowercase. TRUE or FALSE?
What are the 5 types of inheritance in c ++?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What are the ways to a null pointer can use in c programming language?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is an lvalue?