Q. What will be the output of the following PHP code?
Code:<?php
$user = array("Ats ", "Ajit ", "Rahul ", "Aju ");
for ($str=0; $str < count($user); $str++) {
if ($user[$str] == "Rahul ") continue;
printf ($user[$str]);
}
?>
So it will print "Ats Ajit Aju " only.