Searching for: For Each in C
For Loop
Language: C

The for loop is a control structure that executes a block of code a specified number of times.

Switch Case
Language: C

A switch case is used test variable equality for a list of values, where each value is a case. When the variable is equal to one of the cases, the statements following the case are executed. A break statement ends the switch case. The optional default case is for when the variable does not equal any of the cases.

While Loop
Language: C

The while loop executes a block of code while a boolean expression evaluates to true. It terminates as soon as the expression evaluates to false. The boolean expression is evaluated before each iteration.