goto语句 goto语句可以使程序在没有任何条件的情况下跳转到指定的位置,所以goto语句又被称为是无条件跳转语句。 goto语句,最常见的用法就是终止程序在某些深度嵌套的结构的处理过程 一次跳出两层及多层(不建议使用) #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { flag: printf("hehe\n"); printf("haha\n"); goto flag; return 0; }