Home » Interview » C Programming Interview Questions :: Discussion
  1. What is recursion in C?

    When a function calls itself, and this process is known as recursion. The function that calls itself is known as a recursive function.
    Recursive function comes in two phases:

    Winding phase
    Unwinding phase


Be The First To Comment