Answer Posted / vishwanath pillay
void f1()
{
.....
if(condition)
{
f2();
....
}
}
void f2()
{
....
....
f1();
}
void main()
{
f1();
}
On closer look u'll find that the program goes lopping
itself again and again untill the condition in satified.
Once the cond. is met it will exit the loop and terminate
the prog.
But there is 1 important thing that:- the func's call is
indirect.
this is Indirect Recurssion.
| Is This Answer Correct ? | 29 Yes | 7 No |
Post New Answer View All Answers
Are global variables static in c?
What is difference between stdio h and conio h?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is a const pointer in c?
Can main () be called recursively?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What does stand for?
What are the different data types in C?
Do pointers need to be initialized?
What is the use of a conditional inclusion statement in C?
How can a number be converted to a string?
What language is lisp written in?
Explain modulus operator. What are the restrictions of a modulus operator?
What is a constant and types of constants in c?
How do we open a binary file in Read/Write mode in C?