我打开了一个文件,我知道如何读取我想要的字节数,但现在我想将这些字节保存到内存中的特定地址,我不知道我该怎么做。
以下代码就是我所拥有的:
void fileSaver(char * n []){
int fil;
int bytes;
char * space = malloc(100);
fil= open("file",O_RDONLY);
bytes=read(fil,space,4);
printf("%d\n",bytes );
printf("%s\n",space );
}
我用作函数参数的n是我想要读取的字节数