Demonstrate that left-shifting 1 << 3 equals 8, and print the byte sizes of int and double.
1 << 3
int
double
Shift: 1 << 3 = 8 Sizes: int=4 bytes, double=8 bytes [✓] Types and bitwise ops verified (Time: 0.005s, Memory: 1.8 MB)