home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_05 / 8n05076b < prev    next >
Text File  |  1990-04-18  |  212b  |  14 lines

  1.  
  2. Listing 6:
  3. main()
  4. {
  5.     register int result;
  6.  
  7.     result = test();
  8.     printf("test() called, testcalled = %d\n", result);
  9.     result = test();
  10.     printf("test() called, testcalled = %d\n", result);
  11.     exit(0);
  12. }
  13.  
  14.