Skip to content

Instantly share code, notes, and snippets.

View TheRoyalDebugger's full-sized avatar
🏠
Working from home

Dhruv Narayan Singh TheRoyalDebugger

🏠
Working from home
  • AT&T
  • India
View GitHub Profile
/*
Evaluation Of postfix Expression in C++
Input Postfix expression must be in a desired format.
Operands must be integers and there should be space in between two operands.
Only '+' , '-' , '*' and '/' operators are expected.
*/
#include<iostream>
#include<stack>
#include<string>