Skip to content

Instantly share code, notes, and snippets.

View iamSuva's full-sized avatar
💻
Focusing

Suvadip Maiti iamSuva

💻
Focusing
  • west Bengal
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>