Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 1;
if ($x--)
    print "hi"
    $x--;
else
    print "hello"
?>

A. hi

B. hello

C. error

D. no output

Answer: Option C

Solution(By Examveda Team)

The if statement has no brackets and it expects a else/else if after a if.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)