in Programming in C recategorized by
2,997 views
1 vote
1 vote

____ is used to convert from recursive to iterative implementation of an algorithm

  1. Array
  2. Tree
  3. Stack
  4. Queue
in Programming in C recategorized by
by
3.0k views

1 Answer

3 votes
3 votes

Since function calls are executed in Last In First Out order, stack is the data structure for converting recursive to iterative implementation.

OPTION C.