错误如下,请求解答:谢谢帮助!
 topmp3player\stdafx.h(14) :error C2018: unknown character '0xa1'
\topmp3player\stdafx.h(14) : error C2018: unknown character '0xb0'
\topmp3player\stdafx.h(14) : error C2006: #include expected a filename, found 'identifier

解决方案 »

  1.   


    你从哪里复制的代码吧?提示 “unknown character '0xa1'” 这个错误,一般是 VC 编译器不能识别你这个字符。你可以先把提示有错的这几行,拷贝到记事本中,然后再从记事本拷贝粘贴到 VC 编译器中,然后重新编译。至于“#include expected a filename, found 'identifier”  是不是你程序中用了这个库文件,但是并没有把这个库添加到你的工程? 通过  project->add to project ->file  添加,还有你需要在 stdafx.h 里包含这个库所对应的 .h 头文件。