Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* explanation of http://codegolf.stackexchange.com/questions/24304/why-isnt-it-ending/24361#24361 */
- int main() {
- int x = 0;
- while (x < 10)
- do {
- x++;
- } while (x-- > 0);
- while (x > -10)
- x--;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement