All pastes #2072465 Raw Edit

Unnamed

public text v1 · immutable
#2072465 ·published 2011-05-30 20:34 UTC
rendered paste body
#include <stdio.h>

main() {
        int i;
        for(i = 0; i < 1000000000000000; i++) {
                printf("%016d\n", i);
                fflush(stdout);
        }
}