当我们从网上copy一段代码后,总会出现这个问题。博主在Arduino环境中也出现了,so,这个问题应该是C语言和C++编译器中才会出现的。
test_int:19: error: stray '\343' in program
銆?銆? char string[25];
^
test_int:19: error: stray '\200' in program
test_int:19: error: stray '\200' in program
test_int:19: error: stray '\343' in program
test_int:19: error: stray '\200' in program
test_int:19: error: stray '\200' in program
test_int:21: error: stray '\343' in program
銆? 銆?itoa(number, string, 10);
^
test_int:21: error: stray '\200' in program
test_int:21: error: stray '\200' in program
test_int:21: error: stray '\343' in program
test_int:21: error: stray '\200' in program
test_int:21: error: stray '\200' in program
exit status 1
stray '\343' in program
这个错误是由于使用了中文引号或其他全角符号,还有一种就是有中文的空格(这个不容易观察),需调到顶格处,再用tab即可。
可通过调整格式来解决问题,代码不多的话可以自己在code一遍哦~