What are advantages and disadvantages of recursive
calling ?
Answer Posted / poonam yadav
by using this tag we call a function continuosly uptill
to specific condion
| Is This Answer Correct ? | 8 Yes | 24 No |
Post New Answer View All Answers
What is the difference between exit() and _exit() function?
What is ambagious result in C? explain with an example.
Write the control statements in C language
What is non linear data structure in c?
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!+....
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is a program flowchart and explain how does it help in writing a program?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
i want to know the procedure of qualcomm for getting a job through offcampus
What is pointer in c?
What is array of structure in c?
Can true be a variable name in c?
What are the applications of c language?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What are directives in c?