<?php$a = '4' ;print + + $a;?>
<?php
$a = '4' ;
print + + $a;
?>
no output
error
5
0
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
The character is type casted to integer before multiplying.
Be The First To Comment