learn operators
HELLO GUYS;
आज हम ऑपरेटर्स के बारे मैं जानेगे ;
ऑपरेटर क्या होता है ,ऑपरेटर एक वो फंक्शन है जो प्रोग्राम को ऑपरेट करता है ,
ऑपरेटर कई प्रकार के होते है बासिक्ली फाइव प्रकार के होते है ,
2 . Assignment operator =वैल्यू को असाइन लिए उपयोग किया जाता है।
3. comparasion operator =इसका उपयोग comperision करने के लिए होता है।
आज हम ऑपरेटर्स के बारे मैं जानेगे ;
ऑपरेटर क्या होता है ,ऑपरेटर एक वो फंक्शन है जो प्रोग्राम को ऑपरेट करता है ,
ऑपरेटर कई प्रकार के होते है बासिक्ली फाइव प्रकार के होते है ,
- Arithmetic operators
- Assignment operators
- Comparison operators
- Logical operators
- Bitwise operators
1.Arthmetical operator=इसका उपयोग माथेमेटिक फंक्शन को उसे करने के लिए होता है।
जैसे =
Operator | Name | Description | Example | Try it |
---|---|---|---|---|
+ | Addition | Adds together two values | x + y | |
- | Subtraction | Subtracts one value from another | x - y | |
* | Multiplication | Multiplies two values | x * y | |
/ | Division | Divides one value from another | x / y | |
% | Modulus | Returns the division remainder | x % y | |
++ | Increment | Increases the value of a variable by 1 | ++x | |
-- | Decrement | Decreases the value of a variable by 1 | --x |
जैसे =
Operator | Example | Same As | Try it |
---|---|---|---|
= | x = 5 | x = 5 | |
+= | x += 3 | x = x + 3 | |
-= | x -= 3 | x = x - 3 | |
*= | x *= 3 | x = x * 3 | |
/= | x /= 3 | x = x / 3 | |
%= | x %= 3 | x = x % 3 | |
&= | x &= 3 | x = x & 3 | |
|= | x |= 3 | x = x | 3 | |
^= | x ^= 3 | x = x ^ 3 | |
>>= | x >>= 3 | x = x >> 3 | |
<<= | x <<= 3 | x = x << 3 |
जिसे =
Operator | Name | Example | Try it | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
== | Equal to | x == y | |||||||||||||||||||
!= | Not equal | x != y | |||||||||||||||||||
> | Greater than | x > y | |||||||||||||||||||
< | Less than | x < y | |||||||||||||||||||
>= | Greater than or equal to | x >= y | |||||||||||||||||||
<= | Less than or equal to | x <= y
४. logical operator = Logical operators are used to determine the logic between variables or values:
|
No comments:
Post a Comment