hi guys I am reading a file and printing it out but the printing or reading the file skips letters like goes to the first letter and skip the second and goes to the third and skip the fourth and so on any help
char ch;
FILE *fl;
do (ch = fgetc(fl)){
printf("the words ar %c ",ch);
while (fgetc(fl) != EOF)
char ch;
FILE *fl;
do (ch = fgetc(fl)){
printf("the words ar %c ",ch);
while (fgetc(fl) != EOF)