In the context of C programming, what is the importance of having a base case in a recursive function?

  • It makes the program run faster
  • It prevents infinite recursion and stack overflow
  • It reduces the need for using pointers
  • It simplifies the program's overall structure
Having a base case in a recursive function is crucial to prevent infinite recursion, which can lead to a stack overflow and program termination. The base case provides a stopping condition for the recursion and ensures the function terminates properly.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *