PHP Functions
What will be the output of the following PHP code?
function sum($num1, $num2) {
$total = $num1 + $num2;
echo "chr($total)";
}
$var1 = "sum";
$var1(5, 44);

Error
1
49
Sum

ANSWER DOWNLOAD EXAMIANS APP