Question: Write a C/C++ program to implement a stack and a queue as applications of LL.
Required the basic operations:
stack: push an element, and pop one element
queue: enque an element, and deque one element
You have to implement a stack and queue as application.