1 2 3 4 5 6 7
int main (int argc, char** argv) { int i; for (i = 0; i; i = i + 1) { i = i / 2; } return i; }