Advertisements
Advertisements
प्रश्न
Write the purpose of Looping Structure in PHP.
टीपा लिहा
Advertisements
उत्तर
- In programming it is often necessary to repeat the same block of code a given number of times, or until a certain condition is met.
- This can be accomplished using looping statements.
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
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 for loop in PHP.
What is For each loop 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.
Write short notes on Do while Loop.
Explain the process Do while loop.
Explain working of loops in array.
