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
Is c compiled or interpreted?
How can you check to see whether a symbol is defined?
what is the difference between 123 and 0123 in c?
Is null always defined as 0(zero)?
What is #line in c?
List some of the static data structures in C?
Can you explain the four storage classes in C?
What is bubble sort technique in c?
Explain how do you sort filenames in a directory?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What is c token?
What are external variables in c?
What is optimization in c?
How can you find the day of the week given the date?
What is extern c used for?