Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Gotos

< >
Example from 1 languages: 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 1 languages: 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 1 languages: Jule
goto a_label
Example from 1 languages: Batchfile
:: this would create an endless loop :myLabel goto myLabel
*

Languages with Gotos include C, BASIC, Jule, Batchfile

*

Languages without Gotos include Nim, C3, progsbase, Slope

*

View all concepts with or missing a hasGotos measurement

*

Read more about Gotos on the web: 1.

View source

- Build the next great programming language About Acknowledgements Extensions Day 630 Donate feedback@pldb.io