gcc compilation error

Error content:

Compilation error: solution when there are free '\240''\302''\XXX in the program

Reason for error:

First of all, the \xxx prompted by the compiler are all octal codes, use sed to replace the full text

solution:

sed -i 's/\o240\|\o302//g'  forkwork.c

Guess you like

Origin blog.csdn.net/weixin_64443786/article/details/130996915