fseek : fseek « stdio.h « C Tutorial

C Tutorial
1. Language
2. Data Type
3. String
4. printf scanf
5. Operator
6. Statement
7. Array
8. Function
9. Structure
10. Pointer
11. Memory
12. Preprocessor
13. File
14. Data Structure
15. Search Sort
16. Wide Character String
17. assert.h
18. ctype.h
19. math.h
20. setjmp.h
21. signal.h
22. stdio.h
23. stdlib.h
24. string.h
25. time.h
26. wctype.h
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C Tutorial » stdio.h » fseek 
22. 16. 1. fseek
ItemValue
Header filestdio.h
Declarationint fseek(FILE *stream, long int offset, int origin);
Functionmoves the file position pointer.
Returnzero on success or nonzero on failure.


'origin' must be one of:

NameMeaning
SEEK_SETSeek from start of file
SEEK_CURSeek from current location
SEEK_ENDSeek from end of file


For a text file, origin must be SEEK_SET and offset must be a value obtained by calling ftell(), or zero. (C: The Complete Reference, Fourth Edition by Herbert Schildt McGraw-Hill/Osborne 2000 (805 pages) ISBN:0072121246)

#include <stdio.h>
  #include <stdlib.h>

  struct fullname {
    char firstName[40];
    char lastName[10];
  info;

  int main(void){
    FILE *fp;

    if((fp=fopen("test""rb")) == NULL) {
      printf("Cannot open file.\n");
      exit(1);
    }

    int client_num = 10;

    /* find the proper structure */
    fseek(fp, client_num*sizeof(struct fullname), SEEK_SET);

    /* read the data into memory */
    fread(&info, sizeof(struct fullname)1, fp);

    fclose(fp);
  }
22. 16. fseek
22. 16. 1. fseek
ww__w___.j__a__v_a_2___s__.___c__o___m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.