All pastes #2087400 Raw Edit

Unnamed

public text v1 · immutable
#2087400 ·published 2011-10-06 12:36 UTC
rendered paste body
int main() {

        printf("in the parent\n");

        int i = fork();

        int j;

        for(j = 0; j<10000000; j++) {
                printf("Forked: %d\n", i);
        }

        return 0;

}