1.

What will be the output of the following PHP code ?
<?php
$a = 41;
$b = 13;
$c = 10;
$d = $c + $a + $b;
echo "$d";
?>

A. Error
B. 41
C. 13
D. 10
E. 64
Answer» F.


Discussion

No Comment Found

Related MCQs