Header: stdio.h
Syntax:
extern int fseek
(
FILE *stream,
long int offset,
int whence
);
Purpose: This function sets the file position indicator for stream. For a binary stream, the new position is at the signed number of chars specified by offset away from the point specified by whence.
|
|
|