Advertisements
Advertisements
प्रश्न
Explain concepts of for loop with example.
थोडक्यात उत्तर
Advertisements
उत्तर
For loop is an important functional looping system which is used for iteration logic when the programmer knows in advance how many times the loop should run.

Flowchart of For loop Structure and Flow chart
Syntax-
for (init counter; test counter; increment counter)
{
code to be executed;
>
Example:
<?php
for ($i = 0; $i<= 10; $i++)
{
echo “The number is: $i<br>”;
}
?>shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>Define Looping Structure in PHP.
What is For each loop in PHP?
List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Explain the use of for each loop in PHP.
Differentiate While and Do while loops.
Explain working of loops in array.
