+ 3
Which language uses bitwise operations apart from java
4 Respuestas
+ 5
All languages uses Bitwise Operators.
In Pascal the left and right shift operators are "shl" and "shr", respectively
x := y shl 2;
What in other language is:
x = y << 2;
+ 4
Almost every language. C, Javascript, PHP, etc. Bitwise operation is a very basic feature
+ 2
Szabó Gábor sir, what is need of bitwise operations??? In software development would we use it??
+ 1
thanks guys