home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_09_03
/
9n03024a
< prev
next >
Wrap
Text File
|
1991-01-10
|
386b
|
23 lines
/* 1*/ #include <stdio.h> /* MS-DOS-specific */
/* 3*/ main()
/* 4*/ {
/* 5*/ FILE *fp;
/* 6*/ char filename[] = "\test.dat";
/* 8*/ fp = fopen(filename, "r");
/* 9*/ if (fp == NULL)
/*10*/ printf("Can't open file %s\n", filename);
/*11*/ else {
/*12*/ printf("File open\n");
/*13*/ fclose(fp);
/*14*/ }
/*15*/ }
Output
Can't open file est.dat