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
Explain what is the stack?
What is the full form of getch?
a c code by using memory allocation for add ,multiply of sprase matrixes
What is class and object in c?
what are non standard function in c
What are the three constants used in c?
What are data types in c language?
What are the advantages of c language?
Differentiate between static and dynamic modeling.
What are the advantages of using new operator as compared to the function malloc ()?
Which header file is used for clrscr?
What is difference between far and near pointers?
Write a factorial program using C.
What is far pointer in c?
How do I swap bytes?