Skip to content

Instantly share code, notes, and snippets.

View Raj2503's full-sized avatar
Focusing

Raj Aryan Raj2503

Focusing
View GitHub Profile
#include<stdio.h>
#include<stdlib.h>
struct Node
{
int coef;
int pow;
struct Node* next;
};
/*
Evaluation Of postfix Expression in C++
Operands must be integers and there should be space in between two operands.
Only '+' , '-' , '*' and '/' operators are expected.
*/
#include<iostream>
#include<stack>
#include<string>
using namespace std;