May 16, 2013 at 11:01pm
Do you have a forward declaration for atoi ?
It looks like the compiler is using the declaration of atoi from <cstdlib> which is:
int atoi (const char * str);
May 16, 2013 at 11:04pm
In main, I have:
int atoi(char);
Main calls the function that evaluates the postfix expression, which is the function I partially posted
May 16, 2013 at 11:06pm
I'd suggest changing the name of your function to something like a_to_i() so it doesn't conflict.
May 16, 2013 at 11:12pm
Ohhhhhhhh, I see.
I called the function before I defined it, like you said.
Thanks a lot! Awesome that you spotted that!
Last edited on May 16, 2013 at 11:12pm