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
Explain what is the difference between #include and #include 'file' ?
What are the uses of null pointers?
Explain what standard functions are available to manipulate strings?
Explain the difference between null pointer and void pointer.
What is the use of void pointer and null pointer in c language?
What is the advantage of a random access file?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is a loop?
What is getch?
Why is c faster?
Who invented b language?
How do I use strcmp?
What the advantages of using Unions?
Is anything faster than c?
What are the valid places to have keyword “break”?