home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat39.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
- #include <fcntl.h>
- #include <io.h>
-
- void main()
- {
- int handle;
- char buffer[20] = "0123456789ABCDEFGHIJ";
-
- /* ½╪Ñ▀ñ@¡╙ 20 ¡╙ª∞ñ╕▓╒ñjñpñº└╔«╫ */
- if( _dos_open("MYFILE.TXT", O_RDWR,&handle) == 0)
- {
- write(handle, buffer, strlen(buffer));
-
- /* ├÷│¼└╔«╫ */
- if(_dos_close(handle) != 0)
- {
- printf("╡L¬k├÷│¼└╔«╫\n");
- }
- else
- {
- printf("ñwª¿Ñ\\ªa½╪Ñ▀¿├├÷│¼└╔«╫\n");
- }
- }
- else
- {
- printf("╡L¬k╢}▒╥└╔«╫\n");
- }
- }