In C programming, a function that calls itself and the recursive call is the last operation before it returns is known as ________ recursion.

  • Direct
  • Indirect
  • Non-tail
  • Tail
In C programming, a function that calls itself and the recursive call is the last operation before it returns is known as "Tail" recursion. Tail recursion is an efficient form of recursion as it allows the compiler to optimize the function calls and avoid unnecessary overhead.
Add your answer
Loading...

Leave a comment

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