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
Write a c program to demonstrate character and string constants?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Explain how do you determine the length of a string value that was stored in a variable?
What is the purpose of the preprocessor directive error?
Why do we need arrays in c?
write a program to print data of 5 five students with structures?
What is sizeof int in c?
What is function in c with example?
what is the format specifier for printing a pointer value?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Write a program to print factorial of given number using recursion?
Is c still used?
Explain the advantages of using macro in c language?
Can we increase size of array in c?
Is null valid for pointers to functions?