Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

fseek function in c

FILE* fp;
// if file is 50 bytes long:
fseek(fp, /* from the end */ 23, SEEK_END); // <- at 50 - 23 so 27
fseek(fp, /* from the start */ 23, SEEK_SET); // 23
fseek(fp, /* from the the current (see ftell) */ 10, SEEK_CUR); // 33
 
PREVIOUS NEXT
Tagged: #fseek #function
ADD COMMENT
Topic
Name
8+6 =