Examveda
Examveda

What will be the output of the following PHP code ?
<?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

Solution(By Examveda Team)

Function does not return anything.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions