/Infix-MathExpression-Interpreter

A component that was used to work with mathEquation Generator

Primary LanguageC++MIT LicenseMIT

Infix-MathExpression-Interpreter

Sample Usage

infix_expression = "25*(88/11)";
mathExpression expression = mathExpression(infix_expression);
int result = expression.evaluate();