A
Q. what is the output of below program?
Code:
<?php
$a=122; $b=13.1;
$c=$a+$b;
$d=$a.$c;
echo $d;
?>
$a=122; $b=13.1;
$c=$a+$b;
$d=$a.$c;
echo $d;
?>
- Correct Answer - Option(A)
- Views: 19
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.