分析
首先创建一个字符串并算出其长度并将其赋予权限。
格式:write(“文件路径”,结束条件,长度)
代码
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main()
{
int len = 0;
int fp = 0;
char text[ 20 ] = {'\0'};
char list[ 121 ] = "123456";
fp = open( "文件", O_WRONLY );
len = sprintf( text, "%s" , list );
write( fp, text, len );
close( fp );
return 0;
}