Write a program that implements the postfix evaluation algorithm that is on your course module.your program should enable users to enter the postfix expression and output the result of evaluation to screen.
Assume the data structure
Struct node {
into value;
node *next;
};
assume also that there is a value 10 in the linked list. Write a code that deletes a node with this value.consider all the following cases.
A.the node is at the head
B.the node is in the middle
C.the node is at the end