Answers for "goto c++"

C++
1

goto c++

//The goto statement is used for transferring the control of a program to a given label
//goto and label must be in a function.
goto label;
...
...
label: statement;
Posted by: Guest on April-30-2021
1

goto c++

Transfer control to a specified label
Posted by: Guest on April-09-2021

Browse Popular Code Answers by Language