home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / c / other / learn / filetwo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-07  |  193 b   |  11 lines

  1. /* FILETWO.C: Visibility in multiple source files. 
  2. */
  3.  
  4. #include <stdio.h>
  5.  
  6. void yonder( void )
  7. {
  8.    extern int chico, harpo;
  9.    printf( "chico = %d, harpo = %d\n", chico, harpo );
  10. }
  11.