Write a C program to implement stack using linked list. please bhai log correct btana.
Answers
Answered by
0
Answer:
Explanation:
push() : Insert the element into linked list nothing but which is the top node of Stack.
pop() : Return top element from the Stack and move the top pointer to the second node of linked list or Stack.
peek(): Return the top element.
display(): Print all element of Stack
Similar questions