Shift operator in C

Shift operator: There are two types of shift operator in C programming language.  Left shift operator Right shift operator 1. Left shift (<<) : The Left Shift (<<) operator is called as the arithmetic left shift operator. This operator works for both signed as well as unsigned numbers and also to types like int, long, […]

Shift operator in C Read More »