What will be the output of the following PHP code ?
<?php
function calc($num1, $num2)
{
$total = $num1 * $num2;
}
$result = calc(42, 0);
echo $result;
?>
<?php
function calc($num1, $num2)
{
$total = $num1 * $num2;
}
$result = calc(42, 0);
echo $result;
?>A. Error
B. 0
C. 42
D. 84
Answer: Option A

Join The Discussion