Report Bug
Qus : The data structure used to implement recursive function calls
Qusडेटा संरचना का उपयोग पुनरावर्ती फ़ंक्शन कॉल को लागू करने के लिए किया जाता है

A. Array
B. Linked list
C. Binary tree
D. Stack


Solution
D. Stack



Explanation
The compiler uses the data type stack for implementing normal as well as recursive function calls.



Report Bug