home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / REF.ZIP / DEMO1.C < prev    next >
C/C++ Source or Header  |  1991-07-14  |  190b  |  20 lines

  1. int j;
  2. extern void sub2(int);
  3. #define C 1
  4. static int sub1(void);
  5.  
  6. main ()
  7. {
  8. int i;
  9.    sub1();
  10.    i = 1;
  11.    j = 2;
  12. }
  13.  
  14. static int sub1 ()
  15. {
  16. int i;
  17.     i = 1;
  18.     sub2(i);
  19. }
  20.