home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / tpchal_1.zip / AR.C < prev    next >
C/C++ Source or Header  |  1994-05-26  |  459b  |  26 lines

  1. /*
  2. **  Auke Reitsma (2:281/527)
  3. **
  4. **  Instructions:
  5. **
  6. **    1. Solve problem using pencil (or pen) and paper
  7. **    2. Insert solution in macro definition as shown below
  8. **    3. For timing tests, define TEST macro at compile time
  9. */
  10.  
  11. #include <stdio.h>
  12.  
  13. #define ANSWER 381654729L
  14.  
  15. main(void)
  16. {
  17. #ifdef TEST
  18.       int I;
  19.  
  20.       for (I = 0; I < 1000; ++I)
  21.             ;
  22. #endif
  23.       printf("Number = %ld\n", ANSWER);
  24.       return 0;
  25. }
  26.