C语言 goto语句
goto语句又叫无条件转移语句,先看一个例子:#include <stdio.h>void main(){ if ( 1 ) { goto gotoflag; } printf( "hello " ); gotoflag: printf( "nihao" );}输出: nihao可以看出在执行 goto...