Ошибка в коде C при попытке удалить пробел - PullRequest
0 голосов
/ 18 апреля 2010

этот код является основой лексера, и он выполняет основную операцию по удалению пробелов из исходного файла и переписывает его в другой файл с каждым словом в отдельных строках. Но я не могу понять, почему файл lext.txt не обновляется?

#include<stdio.h>

/* this is a lexer which recognizes constants , variables ,symbols, identifiers , functions , comments and also header files . It stores the lexemes in 3 different files . One file contains all the headers and the comments . Another file will contain all the variables , another will contain all the symbols. */

int main()
{
    int i;
    char a,b[20],c;
    FILE *fp1,*fp2;

    fp1=fopen("source.txt","r"); //the source file is opened in read only mode which will passed through the lexer
    fp2=fopen("lext.txt","w");  
    //now lets remove all the white spaces and store the rest of the words in a file 

    if(fp1==NULL)
    {
        perror("failed to open source.txt");
        //return EXIT_FAILURE;
    }
    i=0;
    while(!feof(fp1))
    {


        a=fgetc(fp1);

        if(a!="")
        {
            b[i]=a;
        printf("hello");
        }
        else
        {

            b[i]='\0';
            fprintf(fp2, "%.20s\n", b);
            i=0;
            continue;
        }
        i=i+1;                  

        /*Switch(a)
        {
            case EOF :return eof;
            case '+':sym=sym+1;

            case '-':sym=sym+1;

            case '*':sym=sym+1;

            case '/':sym=sym+1;

            case '%':sym=sym+1;

            case '
        */
    }
return 0;
}

Ответы [ 2 ]

4 голосов
/ 18 апреля 2010

Вы пишете в файл только в случае сбоя этого условия:

if(a!="") // incorrect comparison..warning: comparison between pointer and integer

, что никогда не происходит, поэтому вы никогда не перейдете к части else.

Изменить тест на:

if(a!=' ')

EDIT:

Когда вы достигаете конца файла, вы просто завершаете программу, не записывая, что находится в массиве b. Так что вам нужен еще один fprintf после цикла while:

} // end of while loop.
b[i]='\0';
fprintf(fp2, "%.20s\n", b);

Хорошо, здесь идет код, который протестирован и работает отлично:)

while(1)
{
    a=fgetc(fp1);
    if(feof(fp1))
        break;

    if(a!=' ')
        b[i++]=a;
    else {    
        b[i]='\0';
        fprintf(fp2, "%.20s\n", b);
        i=0;
    }    
}
b[i]='\0';
fprintf(fp2, "%.20s\n", b);
0 голосов
/ 18 апреля 2010

Вы забыли, чтобы смыть! (между прочим ...): -P


if (a! = '')

и

// записывает ожидающие данные в файл

fflush ();

и

// Освобождает указатель файла

fclose (FP2); * * 1 021

Вот полный код:

#include<stdio.h>

/* this is a lexer which recognizes constants , variables ,symbols, identifiers , functions , comments and also header files . It stores the lexemes in 3 different files . One file contains all the headers and the comments . Another file will contain all the variables , another will contain all the symbols. */

int main()
{
    int i;
    char a,b[20],c;
    FILE *fp1,*fp2;

    fp1=fopen("source.txt","r"); //the source file is opened in read only mode which will passed through the lexer
    fp2=fopen("lext.txt","w");  
    //now lets remove all the white spaces and store the rest of the words in a file 

    if(fp1==NULL)
    {
        perror("failed to open source.txt");
        //return EXIT_FAILURE;
    }
    i=0;
    while(!feof(fp1))
    {


        a=fgetc(fp1);

        if(a!=' ')
        {
            b[i]=a;
            printf("hello");
        }
        else
        {

            b[i]='\0';
            fprintf(fp2, "%.20s\n", b);
            i=0;
        }
        i=i+1;

        //writes pending data to file
        fprintf(fp2, "%.20s\n", b);
        fflush();

        //Releases file-pointer
        fclose(fp2);   

        /*Switch(a)
        {
            case EOF :return eof;
            case '+':sym=sym+1;

            case '-':sym=sym+1;

            case '*':sym=sym+1;

            case '/':sym=sym+1;

            case '%':sym=sym+1;

            case '
        */
    }
return 0;
}

GOODLUCK !!

CVS @ 2600Hertz

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...