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 = 5; // 00000101 int result = ~a; printf("Result: %d\n", result); // -6 on most systems return 0; }
Result: -6