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 are the two types of functions in c?
What is the use of sizeof?
Write a program to print numbers from 1 to 100 without using loop in c?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
What are different types of pointers?
Explain how do you determine the length of a string value that was stored in a variable?
What are different storage class specifiers in c?
how to find binary of number?
Explain the priority queues?
What are the two forms of #include directive?
how logic is used
What is a node in c?
Is it possible to execute code even after the program exits the main() function?
Which is better between malloc and calloc?
what is a function method?give example?