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...

Evaluate the following:
int fn(int v)
{
if(v==1 || v==0)
return 1;
if(v%2==0)
return fn(v/2)+2;
else
return fn(v-1)+3;
}
for fn(7);




1) 10


2) 11


3) 1

Answer Posted / harish

11

Is This Answer Correct ?    10 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the auto keyword good for?

1239


How many types of sorting are there in c?

1115


Why we use stdio h in c?

1100


Who is the founder of c language?

1228


What is the use of pointers in C?

1137


What is the usage of the pointer in c?

1201


What are the differences between new and malloc in C?

1211


Explain what are the advantages and disadvantages of a heap?

1130


What is page thrashing?

1148


How can I get back to the interactive keyboard if stdin is redirected?

1242


How many types of operator or there in c?

1140


What is action and transformation in spark?

1231


Calculate 1*2*3*____*n using recursive function??

2103


Describe the header file and its usage in c programming?

1111


What is a const pointer?

1201