In: Computer Science
In C++ what does it mean when it says: "error: stray '\226' in program"
ANSWER : HERE IS THE ANSWER FOR YOUR QUESTION:
----------------------------------------------------------------------------------------------------------------
"error: stray '\226' in program"---> this is the error when compiler is not able to read the type of character that you have used in the your program . it might be possible that you used symbols such as '-' or '+' and these kind of error do occur very often while doing the programming
so the solution of this is that try to remove and type again the symbols such as '-' or '+' or any other special symbols.
it might be possible that you have coded in any text editor and then copying that into the compiler window . so some character interpretation is not known by the compiler . so please try to remove any special symbols and then try to compile that again.