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
What is linear search?
What do header files do?
What are the types of assignment statements?
What is the main difference between calloc () and malloc ()?
What do you mean by command line argument?
Why is not a pointer null after calling free?
Multiply an Integer Number by 2 Without Using Multiplication Operator
How do you do dynamic memory allocation in C applications?
Why structure is used in c?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Explain what are reserved words?
Apart from dennis ritchie who the other person who contributed in design of c language.
What does nil mean in c?
What is the maximum length of an identifier?
What is a method in c?