Added a conditional note on application of break and continue (#33298)

This commit is contained in:
P Karthik Chowdary
2019-01-30 00:44:56 +05:30
committed by Christopher McCormack
parent c731321661
commit 3b5b0e22a7

View File

@ -12,6 +12,8 @@ We exit from the switch by `break`. If the `break` statement is not reached befo
Each case must be a digit or a character i.e.. a constant but not a variable.
Note:- `break` and `continue` are applicable only with for, while and switch code blocks.
## Syntax of switch...case
```c