Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
#include
int main() { int a = 3; // 00000011 int result = a << 2; printf("Result: %d\n", result); // 12 (3 * 2^2) return 0; }
Result: 12