answersLogoWhite

0

Type your answer here...

User Avatar

Wiki User

12y ago

What else can I help you with?

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 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 pointer to function with example c language?

It isn't a question, sorry.


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

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


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.


Write and explain recursive backtracking algorithm for n-queens?

This is not a question, this is your homework. For a start, read this: https://en.wikipedia.org/wiki/Eight_queens_puzzle


What is simulation recursion in C?

The factorial f(n) = n * (n-1) * (n-2) * .. 1. For example factorial 5 (written as 5!) = 5 x 4 x 3 x 2 x 1 = 120. The function below returns the factorial of the parameter n. int factorial( int n) { if (n==1) return 1 else return n* factorial( n-1) ; }


Can you provide an example of a flexor muscle and explain its function in the human body?

An example of a flexor muscle is the biceps brachii in the upper arm. Its function is to bend the arm at the elbow joint, allowing for movements like lifting and curling.