Tom Brubaker
2005-03-06 23:38:03 UTC
Is there a reason sched1 and sched2 are implemented with two loops, like so
for (i=0; i < 20; i++) {
for(j=0;j<20000;j++);
Print("2");
}
instead of just with one larger loop?
for (i=0; i < 20; i++) {
for(j=0;j<20000;j++);
Print("2");
}
instead of just with one larger loop?