Examveda
Examveda

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

A. no output

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