What is the difference between the >> and >>> operators ?
Hey Tom,
The >> operator carries the sign bit when shifting right while the >>> zero-fills bits that have been shifted out.
What is the difference between the >> and >>> operators ?
Hey Tom,
The >> operator carries the sign bit when shifting right while the >>> zero-fills bits that have been shifted out.