How does left shift work in C + +?

How does left shift work in C + +? Takes two numbers, left shifts the bits of the first operand, the second operand decides the number of places to shift. Or in other words left shifting an integer “ x ” with an integer “ y ” denoted as ‘ (x<<y)’ is equivalent to multiplying […]