C Language Looping Statements
C Language Looping Statements
do-while loop
-> These statements help you control the flow of your program and execute specific
tasks multiple times.
Join us in telegram- click here
Syntax:
for loop: for (initialization; condition; update) {
// code to be executed repeatedly
}