What are advantages and disadvantages of recursive
calling ?
Answer Posted / nishu
disadvantage:
Recursive procedures are huge memory hogs. Also, they're a
nightmare to debug. Finally, it's pretty rare to find an
application that actually needs recursion as opposed to a
simpler, more friendly methodolgy.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
If null and 0 are equivalent as null pointer constants, which should I use?
Why header files are used?
Explain how can type-insensitive macros be created?
How can you determine the maximum value that a numeric variable can hold?
What is call by reference in functions?
Can you write the function prototype, definition and mention the other requirements.
What is unsigned int in c?
How to write c functions that modify head pointer of a linked list?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
what are the advantages of a macro over a function?
How do you define a string?
What is meant by int main ()?
What is string length in c?
What are pointers? Why are they used?
When should the const modifier be used?