i want to count file chars like this :
#include <stdio.h>
#include <stdlib.h>
int main(){
    int d=0;
    char filename[25];
    FILE *file;
    printf("Enter file name to be read (Text File!) : ");
    gets(filename);
    file = fopen(filename, "rt");
    if(file == NULL){
        printf("Failed to open file...");
        exit(1);
    }
    fseek(file, 0L, SEEK_SET);
    while( !feof(file) ){
        fseek(file, 1L, SEEK_CUR);
        d++;
    }
    printf("%d", d);
}
after that im printing d and it value is 0.. and the file dose have chars. about 150 chars..
 
     
     
    