Bitwise Operation: Left Shift and Right Shift
Left Shift Logical Left Shift and Arithmetic Left Shift zeros are shifted in to replace the discarded bits inserts value 0 bits into the least significant bit works for both signed as well as unsigned numbers logical and arithmetic left shift have same effect Left Shift Operator (<<) Same as multiplying value by 2^count (new_value …