Answered Questions

  • What is the difference between the >> and >>> operators

    The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that havebeen shifted out.

    Suraj Patil

    • Aug 16th, 2014

    When you deals with >> operator, only shifting is done by moving count times towards right without any replacement by zero. but when you deals with >>> operator them like >> this operator but only di...

    infant

    • Oct 5th, 2005

    While dealing with (+)ve numbers there is no difference between >>> and >> operators.Both operators shift zeros into the upper bits of a number.The difference arises when dealing with (...