您的位置:首页 > 其它

error: stray '\343' in program 问题解决

2016-03-16 15:13 393 查看
当我们从网上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一遍哦~

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: