DEV Community

asilbek ibragimov
asilbek ibragimov

Posted on

1 1 1 1 1

34.Operators (Bitwise Operators)

34.Operators (Bitwise Operators)

a) Bitwise operatoriar nima uchun ishlatiladi?

b) Quyidagi kodda qanday natija chiqadi?


| int a = 5; // 0101 in binary |
| int b = 3; // 0011 in binary |
| int result = a & b; |
| Console. WriteLine(result); |


Javoblari:
a) -

b) -

Top comments (0)

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay