Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}

above function is called as:
fun(10);

what will it print?



}

Answer Posted / mortal

it will print "0" i.e zero since compiler wont get to the
print statement until the value is zero.

Is This Answer Correct ?    2 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you find the day of the week given the date?

1241


while initialization of array why we use a[][2] why not a[2][]...?

2404


How can I convert a number to a string?

1256


What are linker error?

1152


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

1065


what is the significance of static storage class specifier?

2345


What is the purpose of & in scanf?

1124


What is an array? What the different types of arrays in c?

1257


Why is it that not all header files are declared in every C program?

1287


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

1258


What is header file in c?

1111


What is variable initialization and why is it important?

1342


Explain output of printf("Hello World"-'A'+'B'); ?

1561


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

1689


What is c definition?

1341