Instead of stray "\302" in a program which I found here, I got the error message:
algo.c:118: error: stray ‘\303’ in program
algo.c:118: error: stray ‘\215’ in program
I could not seem to figure it out. What is this?
For future reference, stray '\XXX' means an incomprehensible character to the compiler. The way to fix is to find the '\XXX' character (which now I find out is not always this Unicode. It can't be a wrong definition, such as '##' in '##define'), so delete or correct it. Good luck!