我刚刚开始C编程并安装了minGW。在进行我的Hello world测试程序时,我在编译我的' test.c'时遇到如下错误。 hello world file using - g ++ test.c。
test.c:1:5:错误:'我'没有命名类型
y_#i n c l u d e
我的代码 -
#include <stdio.h>
int main ()
{
printf ("Hello, World!/n")
return 0;
}
我的路径是C:\ minGW。我还发现stdio.h是安装文件 - /include/ssp/stdio.h
任何人都可以告诉我这里缺少什么。这可以帮助我开始我的旅程。
答案 0 :(得分:2)
消息y_# i n c l u d e
和双行结尾表示文件test.c
以UTF-16编码进行编码。
将文件编码更改为ascii,它将解决您的问题。