#include #include //sleep int main( int argc, char *argv[] ) { int i; int max=600; /* 10mn (environ: ce n'est pas un chrono!)*/ for (i=0; i<=max; i++) { printf("i = %d\n", i); fflush(stdout); sleep(1); } }