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
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is the 'named constructor idiom'?
Is c easy to learn?
What language is windows 1.0 written?
What is the newline escape sequence?
What are the Advantages of using macro
What is the right type to use for boolean values in c?
Process by which one bit pattern in to another by bit wise operation is?
How many bytes are occupied by near, far and huge pointers (dos)?
Is it valid to address one element beyond the end of an array?
Is main a keyword in c?
Why does everyone say not to use gets?
What is s in c?
What do mean by network ?
What is the use of function overloading in C?