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 _____.
What will be displayed in a browser when the following PHP code is executed:
<?php
for (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>
Define Looping Structure in PHP.
List out Looping Structure in PHP.
Write Syntax of Do while loop in PHP.
Write the features Looping Structure.
Differentiate For each and While loop.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.