0
Where can we use bitwise shift?
I think you know about the bitwise shift operator in c++ ( a << x) Can we use the same operator in other languages? For example c# which is based on c? And is it possible to use it, let's say, in Python?
2 Answers
+ 1
Yes. It exists in c# and python.
0
Thanks for that, just haven't seen them being used there before)