Measures Concepts
GitHub icon

Gotos

Gotos - language feature

< >
Example from C, C++, Objective-C, Tick C:
// C/C++ program to check if a number is // even or not using goto statement #include <iostream> using namespace std; // function to check even or not void checkEvenOrNot(int num) { if (num % 2 == 0) goto even; // jump to even else goto odd; // jump to odd even: cout << num << " is evenn"; return; // return if even odd: cout << num << " is oddn"; } // Driver program to test above function int main() { int num = 26; checkEvenOrNot(num); return 0; }
Example from BASIC:
10 REM This BASIC program shows the use of the PRINT and GOTO Statements. 15 REM It fills the screen with the phrase "HELLO" 20 PRINT "HELLO" 30 GOTO 20
Example from Batchfile:
:: this would create an endless loop :myLabel goto myLabel
Example from Jule:
goto a_label

Languages with Gotos include C, C++, Objective-C, BASIC, Batchfile, Jule, Tick C

Languages without Gotos include Nim, C3, progsbase, Slope

This question asks: Does the language have a concept of and syntax for gotos?

Read more about Gotos on the web: 1.

HTML of this page generated by Features.ts

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Queries Stats Sponsor Day 605 feedback@pldb.io Logout