c语言从读文件指定位置内容

2025-03-03 09:04:23
推荐回答(1个)
回答1:

fp=fopen(....
for ( i=0;i<100;i++ ) fseek(fp,1024,SEEK_SET); //跳过100次1K
fread(...