home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c081_7 / 7.ddi / TFEXMPL.ZIP / CALLTEST.C next >
Encoding:
C/C++ Source or Header  |  1991-02-13  |  389 b   |  45 lines

  1. /* Program CALLTEST */
  2. /* Copyright (c) 1990, Borland International */
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.   c();
  8.   b2();
  9.   b1();
  10.   a();
  11. }
  12.  
  13. a()
  14. {
  15.   int i;
  16.  
  17.   for (i=0; i<100; i++)
  18.     b2();
  19.   b1();
  20. }
  21.  
  22. b1()
  23. {
  24.   int i;
  25.  
  26.   for (i=0; i<33; i++)
  27.     c();
  28. }
  29.  
  30. b2()
  31. {
  32.   int i;
  33.  
  34.   for (i=0; i<77; i++)
  35.     c();
  36. }
  37.  
  38. c()
  39. {
  40.   int i;
  41.  
  42.   for (i=0; i<3; i++)
  43.     ;
  44. }
  45.