Devc++编译器编译时报错 “ld returned 1 exit status”是怎么回事啊
本帖最后由 王逗比666 于 2019-12-27 14:03 编辑Devc++编译器编译时报错 “ld returned 1 exit status”是怎么回事啊
代码如下:
#include <stdio.h>
int main()
{
int count;
for (count = 0; count < 10; count++)
{
printf("坤坤王八\n");
}
return 0;
} main写成mian了。
#include <stdio.h>
int main()
{
int count;
for (count = 0; count < 10; count++)
{
printf("坤坤王八\n");
}
return 0;
}
运行结果:
坤坤王八
坤坤王八
坤坤王八
坤坤王八
坤坤王八
坤坤王八
坤坤王八
坤坤王八
坤坤王八
坤坤王八 sunrise085 发表于 2019-12-27 14:03
main写成mian了。
?那是我抄错了,帖子已经改了 sunrise085 发表于 2019-12-27 14:03
main写成mian了。
说出来你可能不信,我剪贴粘贴后就不报错了 王逗比666 发表于 2019-12-27 14:05
说出来你可能不信,我剪贴粘贴后就不报错了
报错 “ld returned 1 exit status”的原因一般都是库函数拼写错误 sunrise085 发表于 2019-12-27 14:06
报错 “ld returned 1 exit status”的原因一般都是库函数拼写错误
知道了谢谢,但我好多次遇到这个问题都是剪贴后再粘贴一遍就好了,感觉好玄学 王逗比666 发表于 2019-12-27 14:05
说出来你可能不信,我剪贴粘贴后就不报错了
重新运行一遍没问题的话,可能是你上次运行的时候有个程序正在运行而没有结束吧
页:
[1]