<?php$one = 1;print($one);print $one;?>
<?php
$one = 1;
print($one);
print $one;
?>
01
11
10
Error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Print can be used with or without parantheses.
Be The First To Comment