Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$var1 = 3;
print ++$var++;
?>

A. 3

B. 4

C. 5

D. error

Answer: Option D

Solution(By Examveda Team)

First preincrement is done and the result is a number,thus post increment cannot be performed on it.

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

Join The Discussion

Related Questions on Operators and Expressions in php