fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}
above function is called as:
fun(10);
what will it print?
}
Post New Answer View All Answers
Can you write a programmer for FACTORIAL using recursion?
What is a wrapper function in c?
With the help of using classes, write a program to add two numbers.
Is sizeof a keyword in c?
Explain what are the __date__ and __time__ preprocessor commands?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Why doesnt this code work?
Explain how many levels deep can include files be nested?
Mention four important string handling functions in c languages .
Are global variables static in c?
Explain what are the different file extensions involved when programming in c?
what is bit rate & baud rate? plz give wave forms
define string ?
What is advantage of pointer in c?
How does struct work in c?