⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 funtc72b.dat

📁 这是一个包含多个语言的指令集
💻 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 + -