Evaluation of postfix expression using stack in c
A) Queue
B) Linked List
C) Stack
D) Array
Answer:
C) Stack
Explanation:
In the evaluation of a postfix expression using a stack in C, a stack data structure is commonly used to store and manipulate operands and operators. The postfix notation is well-suited for stack-based evaluation, as it eliminates the need for parentheses and provides a straightforward way to perform calculations.