What are advantages and disadvantages of recursive
calling ?
Answer Posted / deepak soni
the advantage of recursion is
1). by using this tag we call a function continuosly uptill
to specific condion
| Is This Answer Correct ? | 3 Yes | 29 No |
Post New Answer View All Answers
What is structure data type in c?
Explain what are reserved words?
Can you apply link and association interchangeably?
What is indirection in c?
develop algorithms to add polynomials (i) in one variable
Explain how can I convert a number to a string?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the difference between new and malloc functions?
Can a file other than a .h file be included with #include?
Can a function argument have default value?
What are qualifiers in c?
What is linear search?
What is the difference between variable declaration and variable definition in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is bubble sort technique in c?