Computer Science, asked by dyousif2007, 4 months ago

what is concatenation? Do we need string concatenation for calculations of mathematical operations?
Introduction To Visual Basic

Answers

Answered by abhilasha1636
1

Explanation:

$a = 1;

$b = 2;

echo "$a * $b = " . $a * $b;

echo "<br />";

echo "$a / $b = " . $a / $b;

echo "<br />";

echo "$a + $b = " . $a + $b;

echo "<br />";

echo "$a - $b = " . $a - $b;

echo "<br />";

Similar questions