C loop control structure
What is a loop
A loop is a part of code of a program which is executed repeatedly.
The versatility of the computer lies in its ability to perform a set of instructions repeatedly.
This involves repeating some portion of the program either a specified number of times or until
a particular condition is being satisfied. This repetitive operation is done through a loop control structure.
A loop is used using condition. The repetition is done until condition becomes condition true.
A loop declaration and execution can be done in following ways.
- Check condition to start a loop
- Initialize loop with declaring a variable.
- Executing statements inside loop.
- Increment or decrement of value of a variable.
There are two types of looping statements:
- Entry control loop
- Exit control loop
1. Entry control loop :
In this type of loop, the test condition is checked first before the loop is executed.
Examples of this looping statements are :
(click on the red links...)
2. Exit control loop :
In such type of loop, the loop is executed first. Then condition is checked after block of statements are executed. The loop executed atleat one time compulsarily.
Example of this looping statement is :
Prev NEXT
1 comments:
This is a great explanation of loop control structures in C! Understanding how to use break, continue, and proper looping techniques can really optimize your program's flow and efficiency. If you're working on larger projects or need to manage complex control flows, Raw Accel is a great tool for streamlining containerized applications and boosting your development process.
Post a Comment