home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat63.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <fcntl.h>
- #include <io.h>
-
- void main()
- {
- int handle;
- char ch;
-
- handle = open("MYFILE.TXT",O_RDONLY);
-
- if (handle != -1)
- {
- /* ▒q└╔«╫ññ│vñ@ªrñ╕┼¬¿·¿├ªCÑ▄¬╜¿∞└╔«╫╡▓º└ EOF ¼░ñε */
- while (!eof(handle))
- {
- read(handle, &ch, 1);
- printf("%c", ch);
- }
- close(handle);
- }
- }