for(initialization; condition; updation) {
// statement
}
for(auto var1:variable) {
// statement
}
while(condition) {
// statement
}
do {
// statement
} while(condition);
break
=> Terminate the current loopcontinue
=> Skip to the next iteration of the loop