1 > fseek
fseek(file pointer,offset, position);This function is used to move the file position to a desired location within the file. Fileptr is a pointer to the file concerned. Offset is a number or variable of type long, and position in an integer number. Offset specifies the number of positions (bytes) to be moved from the location specified bt the position. The position can take the 3 values. Value Meaning
0 Beginning of the file 1 Current position 2 End of the file.