Please explain to me in detail the difference between << and <<= and as well as >> and >>=.
I know how shift operators work, but I am not so sure about them when it comes to >>= or <<=.
Please explain to me in detail the difference between << and <<= and as
Share
Well
<<only shifts left.<<=shifts left and assigns.<<=is to<<what+=is to+.EDIT
As suggested by MByD, here is an example