Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~56 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for ahm08

i have this code that converts infix expression to postfix expression but the problem is that when the values are two or more digits the evaluation is wrong can anyone help me please :) [CODE]#include<iostream.h> #include<stdio.h> #include <math.h> #define SIZE 100 class Stack { private: int top; char s[SIZE]; public: …

0
56