"/>
<?php$x;echo "$x";?>
<?php
$x;
echo "$x";
?>
0
1
Nothing
Error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
Since the variable x is not initialised it is not storing any value, therefore nothing will be printed on the screen.
Be The First To Comment