<?phpfunction calculation($n1, $n2) { $n3 = $n1 * $n2; }$R = calculation(12, 25);echo $R; ?>
Function does not return anything.
Previous Question Next Question
Your comments will be displayed only after manual approval.