What will be output of this code. function test(&$var) { $var=$var-1; return $var; } $returnVar = test(50); echo $returnVar. " is answer.";
Correct Answer: Error message
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More PHP MCQ Questions