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 B

Solution(By Examveda Team)

Operator ++ can be done only on variables.

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

Join The Discussion

Related Questions on Operators and Expressions in php