当前位置: 代码迷 >> C语言 >> [求助]谁能帮我解释这个程序啊?
  详细解决方案

[求助]谁能帮我解释这个程序啊?

热度:211   发布时间:2005-02-22 13:32:00.0
[求助]谁能帮我解释这个程序啊?

#include <stdio.h>

#include <string.h>

#include <conio.h>

char xx[50][80] ;

int maxline = 0 ; /* 文章的总行数 */

int ReadDat(void) ;

void WriteDat(void) ;

void main()

{

clrscr() ;

if(ReadDat()) {

printf("数据文件IN.DAT不能打开!\n\007") ;

return ;

}

StrOR() ;

WriteDat() ;

}

void StrOR(void)

{ int i;

char a[80],*p;

for(i=0;i<maxline;i++)

{ p=strchr(xx[i],'o');

while(p)

{ memset(a,0,80);

memcpy(a,xx[i],p-xx[i]);

strcpy(xx[i],p+1);

strcat(xx[i],a); 这四个句子是什么意思啊?分别实现什么功能啊

p=strchr(xx[i],'o');

}

}

}

int ReadDat(void)

{

FILE *fp ;

int i = 0 ;

char *p ;

if((fp = fopen("IN.DAT", "r")) == NULL) return 1 ;

while(fgets(xx[i], 80, fp) != NULL) {

p = strchr(xx[i], '\n') ;

if(p) *p = 0 ;

i++ ;

}

maxline = i ;

fclose(fp) ;

return 0 ;

}

void WriteDat(void)

{

FILE *fp ;

int i ;

clrscr() ;

fp = fopen("OUT5.DAT", "w") ;

for(i = 0 ; i < maxline ; i++) {

printf("%s\n", xx[i]) ;

fprintf(fp, "%s\n", xx[i]) ;

}

fclose(fp) ;

}

肯请各位高手指点一下,感激不尽

搜索更多相关的解决方案: 解释  

----------------解决方案--------------------------------------------------------
  相关解决方案