home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / f / funnel-x.zip / examples / ex04.out < prev    next >
Text File  |  1992-05-27  |  206b  |  19 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. void doit()
  4. {
  5.  int i;
  6.  for (i=0;i<10;i++)
  7.    {
  8.     printf("Hello World!");
  9.     printf("\n");
  10.     printf("Hello World!");
  11.     printf("\n");
  12.    }
  13. }
  14. main()
  15. {
  16.  doit();
  17. }
  18.  
  19.