home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l224 / 2.img / CHAPXMPL.ZIP / SHOWTOT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-29  |  173 b   |  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.