请各位帮忙看一下蓝体字函数,其中红体标出的部分*p代表什么意思啊?
能不能去掉if(*p)这些代码,只留continue呢?
粉红色部分:我感觉这里p所指的肯定不是字母字符了,那么可不可以去掉while句只留p++呢?
我的以上说法有错误吗?
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>
char WORD[10][10] = {"you", "for", "your", "on", "no","if","the","in","to","all"} ;
char xx[50][80] ;
int yy[10] ;
int maxline = 0 ; /* 文章的总行数 */
int ReadDat(void) ;
void WriteDat(void) ;
void ComWord(void)
{
int i, j, k ;
char word[21], *p ;
for(i = 0 ; i < maxline ; i++) {
p = xx[i] ;
j = 0 ;
memset(word, 0, 21) ;
while(*p) {
if(isalpha(*p)) {
word[j++] = *p++ ;
if(*p) continue ;
}
for(k = 0 ; k < 10 ; k++)
if(stricmp(word, WORD[k]) == 0) {
yy[k]++ ;
break ;
}
j = 0 ;
memset(word, 0, 21) ;
while(*p && (!isalpha(*p))) p++ ;
}
}
}
void main()
{
int i ;
for(i = 0 ; i < 10 ; i++) yy[i] = 0 ;
if(ReadDat()) {
printf("数据文件IN.DAT不能打开!\n\007") ;
return ;
}
ComWord() ;
WriteDat() ;
}
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) xx[i][p - xx[i]] = 0 ;
i++ ;
}
maxline = i ;
fclose(fp) ;
return 0 ;
}
void WriteDat(void)
{
FILE *fp ;
int i ;
fp = fopen("out.dat", "w") ;
for(i = 0 ; i < 10 ; i++) {
printf("%s=%d\n", strupr(WORD[i]), yy[i]) ;
fprintf(fp, "%d\n", yy[i]) ;
}
fclose(fp) ;
}