如何纠正错误1d返回1退出状态,c

时间:2016-07-27 10:22:50

标签: c

我想知道为什么我得到"错误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");
}

1 个答案:

答案 0 :(得分:0)

您没有指定返回值main应该具有的值。所以它默认为int。但是你没有提供任何return声明。