A
Q. what is the output of below program?
Code:
<?php
function func($a = 50) {
echo "a is : $a";
}
func();
?>
function func($a = 50) {
echo "a is : $a";
}
func();
?>
- Correct Answer - Option(B)
- Views: 29
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.