The bitwise operator in C/C++ that shifts bits to the left. Shifting the bits of an integer to the left is equivalent to multiplying by powers of 2. For example:

x << y == x * 2y