Comparison Operators in HindiComparison Operators में आठ प्रकार के Operators होते है |OperatorsDescription<Less than>Greater than<=Less than or Equal to>=Gretaer than or Equal to==Equal to===Equal to!=Not Equal to!==Not Equal toExample for <(Less than)Source Code :12345678<?php$a = 10; $b = 6;if($a < $b) echo "a is less than b";else...
Showing posts with label Comparison-Operators-php. Show all posts
Showing posts with label Comparison-Operators-php. Show all posts
05 November, 2018
Comparison Operators in Hindi
Programing Coderfunda
November 05, 2018
Comparison-Operators-php, hindi-php, php
No comments
Comparison Operators in Hindi
Comparison Operators में आठ प्रकार के Operators होते है |
OperatorsDescription
<Less than
>Greater than
<=Less than or Equal to
>=Gretaer than or Equal to
==Equal to
===Equal to
!=Not Equal to
!==Not Equal to
Example for <(Less than)
Source Code :
12345678<?php
$a = 10;
$b = 6;
if($a < $b)
...