answersLogoWhite

0


Best Answer

Type your answer here...

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do you mean by recursive function explain with suitable example?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between function and recursive function?

I will explain in the easiest way the difference between the function and recursive function in C language. Simple Answer is argument of the function is differ but in the recursive function it is same:) Explanation: Function int function(int,int)// function declaration main() { int n; ...... ...... n=function(a,b); } int function(int c,int d) { ...... ...... ...... } recursive Function: int recursive(int,int)// recursive Function declaration main() { int n; ..... ..... ..... ..... n=recursive(a,b); } int recursive(int a,int b) { ..... .... .... .... } Carefully see, In the recursive Function the function arguments are same.


Explain listing process with suitable example and Diagram?

1 Explain listing process with suitable example & Diagram


Explain suitable example 1NF 2NF 3NF?

. Explain 3 NF using suitable examples.


Explain with suitable example how switch statement is differ from if statement?

www.assignmentsclub.com


How do you accept a string by using getch() function with an example?

explain about function call


Need of project for mca students?

EXplain the order and unorder lists with suitable example


Explain the term Recursion with example?

Recursion is when a function (procedure) calls itself. Example: int Fib (int n) { if ((n==1)(n==0))return 1; else return Fib(n-1) + Fib(n-2); }


Explain non-recursive and recursive algorithm for postorder traversal on binary tree?

Step 1:- select first root node (t), start travelsing left contin


Explain pointer to function with example c language?

It isn't a question, sorry.


Give an example of a relation that is NOT a function and explain why it is not a function?

y² = x --> y = ±√x Because there are *two* square roots for any positive number (positive and negative) this will not be a function.


Can you explain how a cell's features are related to the cell's function?

Take for example a skin cell. It is flat. When you go swimming it protects the body like it's function.


Explain the principle of insertional inactivation by giving a suitable example?

insertional inactivation is basically about the inactive of second marker where the protein cannot be longer produced. the suitable example is pUC19 where the lacZ gene that encoded for beta-galactosidase cannot be longer produced when the foreign gene is inserted in it..