C语言中怎样创建一个文件,并对文件进行相关操作?

2024-12-04 15:34:24
推荐回答(1个)
回答(1):

#include
#include
#include
#include <梁嫌io.h>
unsigned char buffer[256];
int main()
{
int fd;
{
fd=open("myfirst.bin",O_RDWR|O_CREAT,0);

unsigned char m=0;
for(m=0;m<255;m++)
{
buffer[m]=m;
}
write(fd,buffer,256);
close(fd);
}
return 0;
}
这是建立文件并写入0-255的程序橡辩手,其他要求自己灶拦看read等函数的原型就知道怎么做了