Answer Posted / hussain
void fun1()
{
static i=0;
if(i<5)
fun2();
}
void fun2()
{
printf("Recursion from fun2 to fun1 which is indirect
recursion\n");
fun1();
}
main()
{
fun1();
}
| Is This Answer Correct ? | 52 Yes | 20 No |
Post New Answer View All Answers
If fflush wont work, what can I use to flush input?
Which type of language is c?
What are the uses of null pointers?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Is array name a pointer?
What are the advantages and disadvantages of pointers?
What are terms in math?
What is the function of this pointer?
What is the difference between void main and main in c?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What is an auto variable in c?
Why do we use & in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Explain what’s a signal? Explain what do I use signals for?