Answer Posted / stranger
A stack is an abstract data type and data structure based on
the principle of Last In First Out (LIFO).A stack is an
ordered list of items.
Items are removed from this list in the reverse order to the
order of their addition.
There are two main operations: push and pop. The push
operation adds (stores) to the list. The pop operation
removes (deletes) an item from the list.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What does override mean in c++?
What are mutator methods in c++?
What are disadvantages of pointers?
What is this weird colon-member (" : ") syntax in the constructor?
Why do we need function?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Which is best ide for c++?
Can you please explain the difference between overloading and overriding?
What is one dimensional array in c++?
Explain what is class definition in c++ ?
What does it mean to declare a destructor as static?
Difference between pass by value and pass by reference?
Is c++ primer good for beginners?
what kind of projects are suitable for c and c++
What is the best way to declare and define global variables?