ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories >> Code-Snippets >> Programming-Code >> C-Code
 
 
 
Question
#include<stdio.h>
void fun(int);
int main()
{
int a;
a=3;
fun(a);
printf("\n");
return 0;
}
void fun(int i)
{
  if(n>0)
  {
    fun(--n);
    printf("%d",n);
    fun(--n);
   }
}  the answer is 0 1 2 0..someone explain how the code is
executed..?
 Question Submitted By :: Geetha_raj2007
I also faced this Question!!     Rank Answer Posted By  
 
Answer
for example :
Here a is three(3).
 
calling  fun(3) in main function.
 FUN(3) {
    calling fun(2) {
	calling fun(1)  {
  	    calling fun(0) {
		N>0 found.
            }
	    printed 0				
            calling second fun(-1) {
		N>0 found. 
            }
        }
	printed 1					
        calling second fun(0) {
       	    N>0 found.
        }
    }
     printed 2		
     calling second fun(1) {
	 calling fun(0) { 
	     N>0 found.
         } 
	 printed 0		
         calling second fun(-1) {
 	     N>0 found.
         } 
     }
 }
 
0
Siva Kumar
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com