1.

What will be the output of the following PHP code ?
<?php
$num = 20;
$num = $num++ + 25;
echo $num;
?>

A. Nothing
B. 20
C. 25
D. 45
E. Error
Answer» E. Error


Discussion

No Comment Found

Related MCQs