📄 funtc72b.dat
字号:
write
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys\stat.h>
#include <io.h>
#include <string.h>
int main(void)
{
int handle;
char string[40];
int length, res;
if ((handle = open("TEST.$$$", O_WRONLY | O_CREAT | O_TRUNC,S_IREAD | S_IWRITE)) == -1)
{
printf("Error opening file.");
exit(1);
}
strcpy(string, "Hello, world!");
length = strlen(string);
if ((res = write(handle, string, length)) != length)
{
printf("Error writing to the file.");
exit(1);
}
printf("Wrote %d bytes to the file.", res);
close(handle);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -