A
Q. What will be the output of the following PHP code ?
Code:
<?php
$p = 3;
$q = 4;
$r = $p++ + ++$q;
echo $r;
?>
$p = 3;
$q = 4;
$r = $p++ + ++$q;
echo $r;
?>
- Correct Answer - Option(B)
- Views: 22
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.