请输入您要查询的百科知识:

 

词条 _creat creat
释义

§ 函数名

_creat creat

§ 功能

创建一个新文件或重写一个已存在的文件

§ 用法

int creat (const char *filename, int permiss);

§ 程序例

#include <SYS\\STAT.H>

#include

#include

#include

int main(void)

{

int handle;

char buf【11】 = "0123456789";

/* change the default file mode from text to binary */

_fmode = O_BINARY;

/* create a binary file for reading and writing */

handle = creat("DUMMY.FIL", S_IREAD | S_IWRITE);

/* write 10 bytes to the file */

write(handle, buf, strlen(buf));

/* close the file */

close(handle);

return 0;

}

随便看

 

百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/11 11:55:35