我想知道为什么我得到"错误1d返回1退出状态"对于我的Codeblocks ide中的这个基本代码。
#include<stdio.h>
main()
{
printf("This is the first statement \n");
printf("This is the second statement \n");
printf("This is the third statement \n");
printf("This is the third statement \n");
goto end;
printf("This is the fourth statement \n");
end: printf("This is th fifth statement \n");
}
答案 0 :(得分:0)
您没有指定返回值main
应该具有的值。所以它默认为int
。但是你没有提供任何return
声明。