Answers for "program to add two numbers by passing input value in the form but without using (+) operator."

PHP
2

add two numbers in php

<?php  
$x=15;  
$y=30;  
$z=$x+$y;  
echo "Sum: ",$z;  
?>
Posted by: Guest on May-03-2020

Code answers related to "program to add two numbers by passing input value in the form but without using (+) operator."

Browse Popular Code Answers by Language