我对 stdio.h 库中的函数fsetpos有点困惑。我想写入文件中的不同索引(即不想连续写入文件)。我正在考虑使用 fsetpos 但是文档指出..
The internal file position indicator associated with stream is set to the position
represented by pos, which is a pointer to an fpos_t object whose value shall have been
previously obtained by a call to fgetpos.
我必须根据来自 fgetpos 的调用来设置位置对我来说没有意义。有什么意义,因为它只会将其设置为已经设置的位置。或者我没有正确理解它?