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
What is infinite loop?
Is it better to use a macro or a function?
What is sizeof array in c?
What are types of functions?
What are the 4 data types?
What is header file definition?
What is a macro?
how many errors in c explain deply
why programs in c are running with out #include
How many parameters should a function have?
Explain logical errors? Compare with syntax errors.
Is anything faster than c?
What is meant by operator precedence?
What do you mean by dynamic memory allocation in c?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures