1.

What will be the output of the following PHP code ?
<?php
$k = 5;
if (--$k <> ($k != $k++))
{
echo $k;
}
?>

A. 0
B. Error
C. 55
D. 5
E. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs