A
Q. what is the output of below program?
Code:
<?php
for($i=0; $i<=5; $i++){
if($i%2==0)
echo "$i";
}
?>
for($i=0; $i<=5; $i++){
if($i%2==0)
echo "$i";
}
?>
- Correct Answer - Option(B)
- Views: 16
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.