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 >
Wrap
Text File
|
1995-07-08
|
572b
|
30 lines
/*------------------------------------------------------------------------------
BADCODE.C
Copyright 1995 KEIL Software, Inc.
This source file is full of errors. You can use µVision/51 to compile and
correct errors in this file.
------------------------------------------------------------------------------*/
#incldue <stdio.h>
void main (void, void)
{
unsigned i;
long fellow;
fellow = 0;
fer (i = 0; i < 1OOO; i++)
{
printf ("I is %u\n", i);
fellow += i;
printf ("Fellow = %ld\n, fellow);
printf ("End of loop\n")
}
}