fork download
  1. Predict the Missing code expression from below program which gives " 3, 4" as output
  2. <?php
  3. $x=3; $y=4;
  4. for($i=1;$i<=$y;$i++)
  5. { $x*=$i;
  6. for($j=1;$j>=$i; $j--)
  7.  
  8.  
  9.  
  10. {
  11. echo $x," ", $y;}
  12. }
  13. ?>
Success #stdin #stdout 0.03s 26200KB
stdin
Standard input is empty
stdout
Predict the Missing code expression from below program which gives " 3, 4" as output
 3 4