Advertisements
Advertisements
प्रश्न
Write Syntax of For loop in PHP.
टीपा लिहा
Advertisements
उत्तर
for (init counter; test counter; increment counter)
{
code to be executed;
}shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
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 “*\t”;
}
?>Define for loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of Do while loop in PHP.
Write the features Looping Structure.
Write the purpose of Looping Structure in PHP.
Explain working of loops in array.
