//đếm số ký tự trong 1 file văn bản
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void main()
{
FILE *t;
int dem=0;
char c;
t=fopen("E:\\TOAN.TXT","a+");
if(t==NULL)
{
printf("khong mo duoc file\n");
exit(0); //ket thuc chuong trinh
}
while (feof(t)==0)
{
c=getc(t);
dem++;
}
printf("co %d ki tu\n",dem);
fclose(t);
}
Không có nhận xét nào:
Đăng nhận xét