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
Hi can anyone tell what is a start up code?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Is malloc memset faster than calloc?
What is difference between array and pointer in c?
What does c value mean?
What does a pointer variable always consist of?
Explain the bubble sort algorithm.
what is ur strangth & weekness
What is a pointer variable in c language?
How do you define a function?
What is null pointer constant?
Explain how can I avoid the abort, retry, fail messages?
Explain low-order bytes.
Can we declare variables anywhere in c?
What is action and transformation in spark?