Data Structures Question: Download Data Structures PDF

What is the difference between ARRAY and STACK in Data Structures?

Tweet Share WhatsApp

Answer:

STACK follows LIFO. Thus the item that is first entered would be the last removed.

In array the items can be entered or removed in any order. Basically each member access is done using index. No strict order is to be followed here to remove a particular element.

Download Data Structures PDF Read All 48 Data Structures Questions
Previous QuestionNext Question
Tell how to check whether a linked list is circular ?What is the difference between NULL AND VOID pointer in Data Structures?