1.

What will be the output of the following PHP code ?
<?php
for ($d = 0; -7 ; $d++)
{
print"d";
if ($d == 4)
break;
}
?>

A. d
B. dd
C. ddd
D. dddd
E. ddddd
Answer» F.


Discussion

No Comment Found

Related MCQs