Expression parser

Jul 25, 2005 12:23

I FINALLY wrote a mathematical expression parser for C++! OMG that's so awesome. lol.

void parseExprRec(char* strToParse, char* parsedString)
{
stack opStack;
int i;
int paren;
int length = strlen(strToParse);
char recStr[256];
bool loopVal;

for (i = 0; i < length; i ( Read more... )

Leave a comment

Comments 2

xslaxyerx July 26 2005, 16:37:58 UTC
What...the...fuck...

Reply


__mindphlux__ July 26 2005, 19:32:56 UTC
Ahhh! I could never be anorexic as long as you keep making these goddamn posts! --hungry--

Reply


Leave a comment

Up