goto语句 label 标签 测试代码

本文提供了一个C语言程序示例,展示了如何使用goto语句跳转到不同的标签位置,以及标签在控制流程中的作用。示例中包含两个main函数,分别演示了未使用和使用goto语句的情况,显示了程序执行的不同路径。
摘要由CSDN通过智能技术生成

#if 1
#if 0
int main(int argc, char* argv[])
{
    int ret = 0;
    printf("***goto test\n");

    //goto label_2;

label_1:
    printf("***goto label_1\n");
    printf("***label_1 end\n");
    
label_2:
    printf("***goto label_2\n");
    printf("***label_2 end\n");

label_3:
    printf("***goto label_3\n");
    printf("***label_3 end\n");
    
label_4:
    printf("***goto label_4\n");
    printf("***label_4 end\n");

    return ret;
}
#endif
/*
***goto test
***goto label_1
***label_1 end
***goto label_2
***label_2 end
***goto label_3
***label_3 end
***goto label_4
***label_4 end
*/


#if 1
int main(int argc, char* argv[])
{
    int ret = 0;
    

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值