Q. what is the output of below program?
Code:
<?php
function func($a = 50) {
echo "a is : $a";
}
func();
?>
β
Correct Answer: (B)
a is: 50
<?php
function func($a = 50) {
echo "a is : $a";
}
func();
?>
You must be Logged in to update hint/solution