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 are the advantages of c preprocessor?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What are the basic data types associated with c?
How can I discover how many arguments a function was actually called with?
What is the difference between text and binary modes?
What is the c language function prototype?
What is c language & why it is used?
How can you check to see whether a symbol is defined?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Is c is a procedural language?
write a c program to find the sum of five entered numbers using an array named number
How to compare array with pointer in c?
What is exit() function?
Is boolean a datatype in c?
can any one tel me wt is the question pattern for NIC exam