- 论坛徽章:
- 0
|
#include <stdio.h>
#include <string.h>
int main(void)
{
FILE *fp,*fp1;
char date1[6];
char hchh1[6];
char buffer[21];
if( (fp=fopen("fp.txt", "r"))==NULL ){
printf( "file not found!\n" );
exit(0);
}
if( (fp1=fopen("fp1.txt", "w"))==NULL ){
printf( "file not found!\n" );
exit(0);
}
while(!feof(fp))
{
memset(buffer,' ',21);
fgets(buffer,21,fp);
memcpy(date1,buffer,6);
memcpy(hchh1,buffer+6,6);
fprintf(fp1,"%6.6s%16.16s\n",date1,hchh1);
}
fclose(fp);
fclose(fp1);
return 1;
}
源文件
0809016310001310000a
0809021310006310000a
0809032320001234560a
0809043160002125100a
0809054510002545400a
生成的文件
080901 631000
080902 131000
080903 232000
080904 316000
080905 451000
中间多出两行,最后还多一行,不知道怎么回事,哪位高手指点一下,多谢了!!! |
|