Advertisements
Advertisements
प्रश्न
Explain concepts of for loop with example.
थोडक्यात उत्तर
उत्तर
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
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
Loops that iterate for fixed number of times is called ______.
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
Define for loop in PHP.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Write the purpose of Looping Structure in PHP.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.