hello.c运行失败
#include <stdio.h>
int main()
{
printf("你是我的小呀小苹果儿\n");
printf("怎么爱你都不嫌多\n");
printf("红红的小脸儿温暖我的心窝\n");
printf("点亮我生命的火 火火火火\n");
return 0;
}
#include <stdio.h>
int main()
{
printf("你是我的小呀小苹果儿\n");
printf("怎么爱你都不嫌多\n");
printf("红红的小脸儿温暖我的心窝\n");
printf("点亮我生命的火 火火火火\n");
return 0;
}
2018-12-21
hello.c: In function 'main':
hello.c:6:53: error: stray '\357' in program
printf("红红的小脸儿温暖我的心窝\n");
^
hello.c:6:54: error: stray '\274' in program
printf("红红的小脸儿温暖我的心窝\n");
^
hello.c:6:55: error: stray '\233' in program
printf("红红的小脸儿温暖我的心窝\n");
^
hello.c:7:5: error: expected ';' before 'printf'
printf("点亮我生命的火 火火火火\n");
^~~~~~
举报