PHP Functions
What will be the output of the following PHP code ?
function calc($num1, $num2)
{
$total = $num1 * $num2;
return $total;
}
$result = calc(42, 0);
echo $result;

Error
42
0
84

ANSWER DOWNLOAD EXAMIANS APP