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
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
If errno contains a nonzero number, is there an error?
How is pointer initialized in c?
How can you determine the maximum value that a numeric variable can hold?
Can the curly brackets { } be used to enclose a single line of code?
What is the difference between array and pointer in c?
Do array subscripts always start with zero?
Why main is not a keyword in c?
Explain the difference between call by value and call by reference in c language?
Linked lists -- can you tell me how to check whether a linked list is circular?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Differentiate between calloc and malloc.
What is a global variable in c?
how can f be used for both float and double arguments in printf? Are not they different types?
What do you mean by invalid pointer arithmetic?