Answer Posted / naresh lingampally
Stack is a data structure ,a last in, first out (LIFO)
abstract data type.
A stack can have any abstract data type as an element, but
is characterized by only two fundamental operations: push
and pop. The push operation adds to the top of the list,
hiding any items already on the stack, or initializing the
stack if it is empty. The pop operation removes an item from
the top of the list, and returns this value to the caller. A
pop either reveals previously concealed items, or results in
an empty list.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are global variables?
What is volatile variable in c with example?
Implement bit Array in C.
What is the difference between text and binary modes?
Explain about the constants which help in debugging?
Tell me about low level programming languages.
What is the total generic pointer type?
Explain what is a const pointer?
what is the syallabus of computer science students in group- 1?
What are the back slash character constants or escape sequence charactersavailable in c?
What is the difference between array and linked list in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are the Advantages of using macro
Do you have any idea how to compare array with pointer in c?
What is a buffer in c?