#include<stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp;
char ch;
//long pos;
fp = fopen("details.txt","r");
if(fp == NULL)
{
puts("Error opening file");
exit(1);
}
//printf("%ld ",ftell(fp));
ch = fgetc(fp);
printf("%c ",ch);
//printf("%ld ",ftell(fp));
fseek(fp,4,SEEK_CUR);
ch = fgetc(fp);
printf("%c ",ch);
//printf("%ld ",ftell(fp));
fseek(fp,3,SEEK_CUR);
ch = fgetc(fp);
printf("%c ",ch);
//printf("%ld ",ftell(fp));
//rewind(fp);
//printf("%ld ",ftell(fp));
return 0;
}