|
fseekfunction
<cstdio>
int fseek ( FILE * stream, long int offset, int origin ); Reposition stream position indicator Sets the position indicator associated with the stream to a new position defined by adding offset to a reference position specified by origin.The End-of-File internal indicator of the stream is cleared after a call to this function, and all effects from previous calls to ungetc are dropped. When using fseek on text files with offset values other than zero or values retrieved with ftell, bear in mind that on some platforms some format transformations occur with text files which can lead to unexpected repositioning. On streams open for update (read+write), a call to fseek allows to switch between reading and writing. Parameters
Return ValueIf successful, the function returns a zero value.Otherwise, it returns nonzero value. Example
After this code is successfully executed, the file example.txt contains: This is a sample. See also
|