home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 181.img / TASM-101.ZIP / CHAPXMPL.ARC / SHOWTOT.C < prev    next >
C/C++ Source or Header  |  1989-05-02  |  173b  |  11 lines

  1. extern int StartingValue;
  2. extern int DoTotal(void);
  3. int Repetitions;
  4. main()
  5. {
  6.    int i;
  7.    Repetitions = 10;
  8.    StartingValue = 2;
  9.    printf("%d\n", DoTotal());
  10. }
  11.