CPP Goto
CPP goto statement is used to jump to an specified label in the code every time, without any condition. Syntax: loop/conditions statements { statements; goto; } Example: #include <iostream.h> using namespace std; int main() { int n; cout << "Enter a number: "; cin >> n; if (n < 5) goto less; else … Read more