// Integer overflow #include #include int main(void) { // Iteratively double i for (int i = 1; ; i *= 2) { printf("%i\n", i); sleep(1); } }