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 / code
Guest & Raj is correct.......
Please don't post the wrong answer if u r not clear about this
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is the difference between ‘g’ and “g” in C?
Explain the properties of union. What is the size of a union variable
What is 2c dna?
What is the difference between text files and binary files?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Explain the properties of union.
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Find MAXIMUM of three distinct integers using a single C statement
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is the best style for code layout in c?
What standard functions are available to manipulate strings?
How can I trap or ignore keyboard interrupts like control-c?
What is non linear data structure in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?
Write a program to print “hello world” without using semicolon?