Examveda
Examveda

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

A. hi

B. hihello

C. error

D. no output

Answer: Option C

Solution(By Examveda Team)

print returns true and when 1 is subtracted it is syntax error.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)