Answer Posted / j j ramesh / ap / mca / jjcet
void fun1();
void fun2();
int i=0;
void main()
{
clrscr();
printf("\n\n\n");
fun1();
getch();
}
void fun2()
{
if(i<5)
{
printf("Recursion from fun2 to fun1 which is indirect
recursion\n");
i++;
fun1();
}
}
void fun1()
{
fun2();
}
| Is This Answer Correct ? | 10 Yes | 11 No |
Post New Answer View All Answers
What tq means in chat?
Do pointers store the address of value or the actual value of a variable?
What are the two forms of #include directive?
What's a good way to check for "close enough" floating-point equality?
what is ur strangth & weekness
What is volatile variable how do you declare it?
What is the function of volatile in c language?
Explain the array representation of a binary tree in C.
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
what is the difference between 123 and 0123 in c?
Hai what is the different types of versions and their differences
What is pointer to pointer in c?
How to write a code for reverse of string without using string functions?
Is javascript written in c?