#Concept #Study #CPP
## continue
- no further statements in the body of the loop are executed.
- immediately starts at the beginning of the loop again.
### Example
```cpp
for (auto val: values){
if (val == -99)
continue;
}
}
```
## break
- loop is stopped, no further lines from the body of the loop are executed
- Control goes to the statement following the loop construct.
### Example
```cpp
for (auto val: values){
if (val == -99)
break;
}
}
```
## 🔗Resources