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
What is a struct c#?
What is void main () in c?
What is the purpose of main( ) in c language?
What are the main characteristics of c language describe the structure of ac program?
Is that possible to store 32768 in an int data type variable?
Linked lists -- can you tell me how to check whether a linked list is circular?
Why we use stdio h in c?
What is a shell structure examples?
How is a null pointer different from a dangling pointer?
What are dangling pointers? How are dangling pointers different from memory leaks?
What functions are in conio h?
What is the difference between the expression “++a” and “a++”?
What are the types of type qualifiers in c?
given post order,in order construct the corresponding binary tree
What are qualifiers in c?