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 / megha
5
| Is This Answer Correct ? | 1 Yes | 15 No |
Post New Answer View All Answers
How can a program be made to print the line number where an error occurs?
What is realloc in c?
Explain what is the benefit of using #define to declare a constant?
Explain what math functions are available for integers? For floating point?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is array within structure?
What is wrong with this program statement?
How can I avoid the abort, retry, fail messages?
What is static function in c?
What is a example of a variable?
What is a volatile keyword in c?
Can you think of a logic behind the game minesweeper.
What is scope rule in c?
What is your stream meaning?
What is the process to generate random numbers in c programming language?