<?phpfunction calculate($n1, $n2) { $n3 = $n1 * $n2; return $n3; }$R = calculate(22, 23);echo $R; ?>
Function returns $n3.
Previous Question Next Question
Your comments will be displayed only after manual approval.