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