Home / C Programming / Functions :: Discussion

Discussion :: Functions

  1. The recursive functions are executed in a ...........

  2. A.

     Parallel order

    B.

     First In First Out order

    C.

     Last In First Out order

    D.

     Iterative order

    E.

     Random order

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Because for each function call an entry is created in stack frame( known as Active Record Instance), and are executed in LIFO manner.


Be The First To Comment