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
Does c++ have arraylist?
What are c++ storage classes?
What is the object serialization?
Explain unexpected() function?
What do you mean by funtion prototype?
Difference between overloaded functions and overridden functions
How is new() different from malloc()?
What is bubble sort c++?
What is a Default constructor?
Describe friend function & its advantages.
What is meant by entry controlled loop? What all C++ loops are exit controlled?
What are member functions used in c++?
What is the full form of ios?
Why was c++ created?
When there is a global variable and local variable with the same name, how will you access the global variable?