I know that they have that in VisualBasic but what is the equivalence in C++ ?
Printable View
I know that they have that in VisualBasic but what is the equivalence in C++ ?
break = Exit <loop/switch>
return = Exit <function/loop/switch>
:)
Also there is the continue keyword.
Quote:
continue;
The continue keyword passes control to the next iteration of the smallest enclosing do, for, or while statement in which it appears
ok thx you :)