Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
int main() {
typeof(-1U) x = 1;
printf("%lu\n", x << 32);
return 0;
}
/*
gcc --version && gcc -std=gnu11 -O0 -o testshift_noopt testshift.c && ./testshift_noopt