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
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
Loops that iterate for fixed number of times is called ______.
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
Define Looping Structure in PHP.
What is For each loop in PHP?
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Write the purpose of Looping Structure in PHP.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.
