Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$a = 10; $b = 10;
if ($a = 5)
    $b--;
print $a;print $b--;
?>

A. 58

B. 59

C. 109

D. 108

Answer: Option B

Solution(By Examveda Team)

a is set to 5 in the if condition and b is postdecremented in the print statement.

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

Join The Discussion

Related Questions on Operators and Expressions in php