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
Without Computer networks, Computers will be half the use. Comment.
What is the use of getch ()?
Are there any problems with performing mathematical operations on different variable types?
Explain what are its uses in c programming?
Is exit(status) truly equivalent to returning the same status from main?
Write a program to swap two numbers without using a temporary variable?
What is the difference between NULL and NUL?
What is the use of sizeof () in c?
What are the __date__ and __time__ preprocessor commands?
Can 'this' pointer by used in the constructor?
Is it possible to pass an entire structure to functions?
Is c still used?
What is meant by realloc()?
Explain null pointer.
What are conditional operators in C?