Examveda
Examveda

What will be the output of the following PHP code ?

<?php
echo $x-- != ++$x;
?>

A. 1

B. 0

C. error

D. no output

Answer: Option A

Solution(By Examveda Team)

Automatically x is declared and initialized to 0,then decremented and compared with its increments, thus returns 1.

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

Join The Discussion

Related Questions on Operators and Expressions in php