<?php$var1 = 3;print ++$var++;?>
<?php
$var1 = 3;
print ++$var++;
?>
3
4
5
error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
First preincrement is done and the result is a number,thus post increment cannot be performed on it.
Be The First To Comment