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 is the use of ?
What is hash table in c?
What is stack in c?
Is c compiled or interpreted?
Can you apply link and association interchangeably?
Why pointers are used?
Why are algorithms important in c program?
how is the examination pattern?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
I need previous papers of CSC.......plz help out by posting them.......
Explain how can I right-justify a string?
What does c value mean?
What are the Advantages of using macro
in linking some of os executables are linking name some of them
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?