PHP Control Structures (Loop)
What will be the output of the following PHP code ?
$user = array("Ashley", "Bale", "Shrek", "Blank");
for ($x = 0; $x < count($user); $x++) {
if ($user[$x] == "Shrek")
continue;
printf ($user[$x]);
}

No output
AshleyBaleBlank
AshleyBale
AshleyBaleShrek

ANSWER DOWNLOAD EXAMIANS APP