home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / KA9Q212.ZIP / TEST.C < prev    next >
C/C++ Source or Header  |  1993-03-07  |  190b  |  12 lines

  1. #include <stdio.h>
  2.  
  3. int main()
  4.     {
  5.     FILE *fp;
  6.     fp = fopen("c:/mark/netdev/spool/zones/tecc.zon", "r");
  7.     if (fp)
  8.         printf("Opened\n");
  9.     else printf("Did not open\n");
  10.     return 0;
  11.     }
  12.