#include #define RECSIZE 14 int main() { FILE *f; char froot[RECSIZE]; int record,offset; if(!(f = fopen("froot.txt","r"))) { puts("Error opening file"); return(1); } for(record=0;record<25;record+=2) { fread(froot,RECSIZE,1,f); fseek(f,RECSIZE,SEEK_CUR); printf("%2d: %s\n",record,froot); } fclose(f); return(0); }