Question:What will be the output of the following script?$count=50; function Argument() { $count++; echo $count; } Argument() ?>
$count=50; function Argument() { $count++; echo $count; } Argument() ?>
A It will print 50 B It will print 51 C It will print 52 D It will print 1
+ AnswerD
+ Report