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 = 12; // 00001100 int result = a >> 2; printf("Result: %d\n", result); // 3 (12 / 2^2) return 0; }
Result: 3