C++ – Switch Statement
Working samples:
... switch (expression) { case constant1: group-of-statements-1; break; case constant2: group-of-statements-2; break; . . . default: default-group-of-statements } ...
C++ – Switch Statement
Working samples:
... switch (expression) { case constant1: group-of-statements-1; break; case constant2: group-of-statements-2; break; . . . default: default-group-of-statements } ...
Copyright notice: any total or partial reproduction of the content is forbidden without previous authorisation by the Author. Copyright ©2013-2024, all rights reserved.
Comments are closed.