Arithmetic Operators में पांच प्रकार के Operators होते है |OperatorsDescription+Addition-Subtraction*Multiplication/Division%ModulusExample for Addition(+)Source Code :123456<?php$a = 10; $b = 4;$c = $a + $b;echo "Addition of ".$a." and ".$b." is ".$c;?>Output :Addition of 10 and 4 is 14Example for Subtraction(-)Source Code :123456<?php$a...
Showing posts with label Arithmetic-Operators-Php. Show all posts
Showing posts with label Arithmetic-Operators-Php. Show all posts
05 November, 2018
Arithmetic Operators in Hindi
Programing Coderfunda
November 05, 2018
Arithmetic-Operators-Php, hindi-php, php
No comments
Arithmetic Operators में पांच प्रकार के Operators होते है |
OperatorsDescription
+Addition
-Subtraction
*Multiplication
/Division
%Modulus
Example for Addition(+)
Source Code :
123456<?php
$a = 10;
$b = 4;
$c = $a + $b;
echo "Addition of ".$a." and ".$b." is ".$c;
?>
Output :
Addition of 10 and 4 is 14
Example for Subtraction(-)
Source...