home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / tprofexm.pak / CALLTEST.C next >
C/C++ Source or Header  |  1997-07-23  |  478b  |  45 lines

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