Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$i = 1;
if ($i++ && ($i == 1))
printf("Yesn$i");
else
printf("Non$i");
?>
Answer : Option A
Explanation :
The first condition returns true and increments but the second condition is false.
Be The First To Comment