Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$var1 = 0;
$var1 = $var1++ + 5; 
echo $var1; 
?>

A. 5

B. error

C. 6

D. 7

Answer: Option A

Solution(By Examveda Team)

Operator precedence followed.

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

Join The Discussion

Related Questions on Operators and Expressions in php