这是错哪里了 求指导
显然是“红红的小脸儿温暖我的心窝”这一行末尾的分号错了,改为“;”就OK了!
#include<stdio.h>
int main()
{
printf("你是我的小呀小苹果儿\n");
printf("怎么爱你都不嫌多\n");
printf("红红的小脸儿温暖我的心窝\n");
printf("点亮我生命的火 火火火火\n");
return 0;
}
check the semicolons please.