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

What is recursion?

Answer Posted / glibwaresoftsolutions

A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?

1950


Can a function take variable length arguments, if yes, how?

960


Is eclipse good for c++?

992


Can we use this pointer inside static member function?

1021


Can we make any program in c++ without using any header file and what is the shortest program in c++.

1071


Write a program to show polymorphism in C++?

1079


What is string in c++ programming?

1110


how to connect with oracle 9i with server in socket program in c/c++

2283


Can a new be used in place of old mallocq? If yes, why?

1038


Does improper inheritance have a potential to wreck a project?

1086


Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].

1399


explain the reference variable in c++?

1016


What are namespaces in c++?

1031


Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c

1230


Explain terminate() function?

1008