gpt4 book ai didi

c - 如何从特定位置读取文件或从特定位置读取文件?

转载 作者:太空宇宙 更新时间:2023-11-04 06:50:49 25 4
gpt4 key购买 nike

假设我有这样一个文件:

card the red 
parrots massive
belt earth

如果我想从第 2 个位置读到第 10 个位置并打印它:

ard the r

我将如何实现这一目标?

最佳答案

最直接的方法是使用fseek,然后使用fread。为简单起见,此代码省略了错误检查。

#include <stdio.h>
#include <string.h>

int main(){
FILE* f = fopen("File.txt", "r");
fseek(f, 1, SEEK_SET);
char buf[10];
memset(buf, 0, 10);
fread(buf, 1, 9, f);
printf("%s\n", buf);
}

关于c - 如何从特定位置读取文件或从特定位置读取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51627719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com