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 / vinay

10,5,2,1

after that it terminated.

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you find the exact size of a data type in c?

1047


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

1112


What is typedef struct in c?

1096


What is break in c?

1105


Explain high-order and low-order bytes.

1171


What does c in a circle mean?

1131


what are the different storage classes in c?

1235


What is calloc malloc realloc in c?

1109


How can I access an I o board directly?

1130


write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?

2927


How do we print only part of a string in c?

1080


What does s c mean in text?

1150


Write a program to use switch statement.

1186


5 Write an Algorithm to find the maximum and minimum items in a set of ā€˜n’ element.

2161


What are pointers? What are stacks and queues?

1221