Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$a = 1; $b = 3;
$d = $a++ + ++$b;
echo $d;
?>

A. 5

B. 4

C. 3

D. error

Answer: Option A

Solution(By Examveda Team)

Post increment of a is done after expression evaluation.

This Question Belongs to PHP >> Operators And Expressions In Php

Join The Discussion

Related Questions on Operators and Expressions in php