1.

What will be the output of the following PHP code ?
<?php
$k = 15;
--$k;
echo $k++;
?>

A. 15
B. 14
C. Error
D. Nothing
E. None of these
Answer» C. Error


Discussion

No Comment Found

Related MCQs