goto語句被稱為C語言中的跳轉(zhuǎn)語句。用于無條件跳轉(zhuǎn)到其他標簽。它將控制權(quán)轉(zhuǎn)移到程序的其他部分。
goto語句一般很少使用,因為它使程序的可讀性和復(fù)雜性變得更差。
語法
goto label;
讓我們來看一個簡單的例子,演示如何使用C語言中的goto
語句。
打開Visual Studio創(chuàng)建一個名稱為:goto的工程,并在這個工程中創(chuàng)建一個源文件:goto-statment.c,其代碼如下所示 -
#include <stdio.h>
void main() {
int age;
gotolabel:
printf("You are not eligible to vote!\n");
printf("Enter you age:\n");
scanf("%d", &age);
if (age < 18) {
goto gotolabel;
}else {
printf("You are eligible to vote!\n");
}
}
執(zhí)行上面代碼,得到以下結(jié)果 -
You are not eligible to vote!
Enter you age:
12
You are not eligible to vote!
Enter you age:
18
You are eligible to vote!