simpleCompteur10mn.c 276 B

12345678910111213
  1. #include <stdio.h>
  2. #include <unistd.h> //sleep
  3. int main( int argc, char *argv[] )
  4. {
  5. int i;
  6. int max=600; /* 10mn (environ: ce n'est pas un chrono!)*/
  7. for (i=0; i<=max; i++)
  8. {
  9. printf("i = %d\n", i);
  10. fflush(stdout);
  11. sleep(1);
  12. }
  13. }