C - 字符串值消失了吗?

时间:2017-05-09 18:05:31

标签: c string variables

我必须为我的单编程课程编写代码,而且我还是初学者所以我需要一些帮助来弄清楚为什么'word1'的值在程序运行时消失了。我必须编写一个打开.c文件并计算特定保留字的程序,我将其保存在.txt文件中。代码是:

int countResWords(FILE *filep){
    int count=0;
    char word1[20],word2[20],*pos,*token,*pch,*pch2;
    FILE *rp;
    rp=fopen("reservedWords.txt","r+");
    if(rp==NULL){
        perror("File cannot be opened.");
        return -1;
    }
    else{
        while(!feof(rp)){
            fscanf(rp,"%s",&word1);
            count=0;
            while(!feof(filep)){
                fscanf(filep,"%s",&word2);
                if((pch=strchr(word2,'('))!=NULL){
                    token=strtok(word2,"(");
                    while(token!=NULL){
                        if((pch2=strchr(token,')'))!=NULL) strtok(token,")");
                        if(strcmp(token,word1)==0) count++;
                        token=strtok(NULL,"(");
                    }
                }else if(strcmp(word2,word1)==0) count++;
            }
            printf("The reserved word %s was used %d times in the given code.",word1,count);
            rewind(filep);
        }
    }
    fclose(rp);
}

int main(int argc, char *argv[]) {
    char filename[100];
    FILE *fp;
    puts("Give a FILE NAME with its FULL PATH.");
    scanf("%s",&filename);
    fp=fopen(filename,"r+");
    if(fp==NULL){
        perror("File cannot be opened.");
        return -1;
    }
    else countResWords(fp);
    fclose(fp);
}

我正在测试的.c文件是:

#include <stdio.h>
#include <stdlib.h>

void selection(void);
void enterText(void);
void enterVoc(void);
void correctText(void);
void statistics(void);
void addWord(void);
void replaceWord(void);
void count(void);

void selection(void){
    puts("selection");
}

void enterText(void){
    puts("enterText");
}

void enterVoc(void){
    puts("enterVoc");
}

void correctText(void){
    puts("correctText");
}

void statistics(void){
    puts("statistics");
}

void addWord(void){
    puts("addWord");
}

void replaceWord(void){
    puts("replaceWord");
}

void count(void){
    puts("count");
}

int main(int argc, char *argv[]) {
    selection();
    enterText();
    enterVoc();
    correctText();
    statistics();
    addWord();
    replaceWord();
    count();
    return 0;
}

沿着该行的某处,变量word1失去了它的值,而在countResWords函数底部的打印中,它不会像不存在那样打印word1。

2 个答案:

答案 0 :(得分:1)

您的代码有多个缓冲区溢出漏洞,因此如果它们被触发,它会有未定义的行为。

未通过测试的特定部分是:C测试文件的行长度超过20个字符。 fscanf(filep,&#34;%s&#34;,&amp; word2) 会在遇到这些行时导致缓冲区覆盖。如果您将 word2 的大小增加到 120 ,那么您的代码会打印一些内容。但是,我没有验证结果是否正确。

答案 1 :(得分:0)

问题是word2的缓冲区,之前是20。我不得不增加它,因为当它超过19个字符时,strcmp()函数出现了问题。