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 formal argument?
What is a structure and why it is used?
What are the preprocessor categories?
What is && in c programming?
Who invented b language?
Explain do array subscripts always start with zero?
C language questions for civil engineering
What is getch() function?
Explain what is page thrashing?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is difference between structure and union with example?
Can you define which header file to include at compile time?
What is meant by errors and debugging?
How can I avoid the abort, retry, fail messages?
What are two dimensional arrays alternatively called as?