lseek()、ftell()、rewind()、fseek()函数
lseek(FILE * stream, int offset, int whence);fseek(FILE * stream, long offset, int whence);两函数参数whence可选四种参数:1. SEEK_SET 参数offset 即为新的读写位置.2. SEEK_CUR 以目前的读写位置往后增加offset 个位移量.3. SEEK_END 将读写位置指向文件尾后再增加offset 个位移量.4. 当whence 值为SEEK_CUR 或SEEK_END 时, 参数