I am trying to compile my program and I am getting alot of these errors:
Parser.cpp:9: error: stray ‘\200’ in program
Parser.cpp:9: error: stray ‘\231’ in program
Parser.cpp:9: error: stray ‘\342’ in program
That sequence of three lines just keeps repeating and repeating.
These are lines 8 and 9 from the file Parser.cpp
const char Parser::opTable[] = {
’\0’, ’$’, ’(’, ’)’, ’^’, ’*’, ’/’, ’+’, ’-’, ’~’ };
I cant even figure out what that error even means.
Thanks in advance for any help.