write.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 33 行
C
33 行
#include <stdio.h>
#include <io.h>
#include <fcntl.h>
char buffer[]
= { "A text record to be written" };
void main()
{
int handle;
int size_written;
/* open a file for output */
/* replace existing file if it exists */
handle = open( "file",
O_WRONLY | O_CREAT | O_TRUNC | O_TEXT,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP );
if( handle != -1 ) {
/* write the text */
size_written = write( handle, buffer,
sizeof( buffer ) );
/* test for error */
if( size_written != sizeof( buffer ) ) {
printf( "Error writing file\n" );
}
/* close the file */
close( handle );
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?