home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 September / pcwk_09_96.iso / demo / wgelectr / pk51demo / files.2 / EXAMPLES / BADCODE / BADCODE.C next >
Text File  |  1995-07-08  |  572b  |  30 lines

  1. /*------------------------------------------------------------------------------
  2. BADCODE.C
  3.  
  4. Copyright 1995 KEIL Software, Inc.
  5.  
  6. This source file is full of errors.  You can use µVision/51 to compile and
  7. correct errors in this file.
  8. ------------------------------------------------------------------------------*/
  9.  
  10. #incldue <stdio.h>
  11.  
  12. void main (void, void)
  13. {
  14. unsigned i;
  15. long fellow;
  16.  
  17. fellow = 0;
  18.  
  19. fer (i = 0; i < 1OOO; i++)
  20.   {
  21.   printf ("I is %u\n", i);
  22.  
  23.   fellow += i;
  24.   printf ("Fellow = %ld\n, fellow);
  25.   printf ("End of loop\n")
  26.   }
  27. }
  28.  
  29.  
  30.