i = 4; while (i>3){ printf("hi there"); i++; }
This loop will never terminate.
i = 3; while (i>3){ printf("hi again"); i--; }
This loop will never start, as the initial value of i is too low.
Back to notes on while loops.