Hacker News new | ask | show | jobs
by mtklein 1216 days ago
Usually I use a do-while loop,

    unsigned char x = 0;
    do {
        printf("%d\n", x);
    } while (++x);