What are advantages and disadvantages of recursive
calling ?
Answer Posted / rahul
advantage:using recursion we can avoid unnecessary callingof
functions.
disadvantage:recursive calling increase the space complexity.
| Is This Answer Correct ? | 45 Yes | 15 No |
Post New Answer View All Answers
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the use of parallelize in spark?
What is hungarian notation? Is it worthwhile?
List some of the static data structures in C?
How will you delete a node in DLL?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
p*=(++q)++*--p when p=q=1 while(q<=6)
Can stdout be forced to print somewhere other than the screen?
which is an algorithm for sorting in a growing Lexicographic order
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Explain About fork()?
What are the different types of endless loops?
What is c programing language?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is calloc in c?