home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
181.img
/
TASM-101.ZIP
/
SHOWTOT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-10-31
|
173b
|
11 lines
extern int StartingValue;
extern int DoTotal(void);
int Repetitions;
main()
{
int i;
Repetitions = 10;
StartingValue = 2;
printf("%d\n", DoTotal());
}