string.h输出字C.

时间:2016-12-08 16:15:14

标签: c string io strtok strlen

我需要比较一个单词中的第一个和最后一个字母;如果这些字母相同,我需要将该字输出到文件中。 但我从另一个文件中提取文字。我的问题是我无法猜测我应该如何输出所有单词,因为在我的代码中,它只输出第一个单词。所以我明白我没有过渡到其他人。

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include<malloc.h>
#include <string.h>

int main()
{
    char my_string[256];
    char* ptr;

    FILE *f;
    if ((f = fopen("test.txt", "r"))==NULL) {
        printf("Cannot open  test file.\n");
        exit(1);
    }

    FILE *out;
    if((out=fopen("result.txt","w"))==NULL){
        printf("ERROR\n");
        exit(1);
    }

    fgets (my_string,256,f);
    int i;
    int count = 1;

    printf("My string is %d symbols\n", strlen(my_string));

    for (ptr = strtok(my_string," "); ptr != NULL; ptr= strtok(NULL," "))
    {
        int last = strlen(ptr) - 1;
        if ((last != -1) && (ptr[0] == ptr[last]))
        {
            printf("%s\n",ptr);
        }
    }

    printf("\n%s\n",my_string);
    fprintf(out,"%s\n",my_string);
    system("pause");
    fclose(f);
    fclose(out);

    return 0;
}

在我的第一个文件中有单词:

high day aya aya eye that

根据我在第一个文件中的文字,它只输出第一个单词

high

到第二个文件。我期待以下内容:

high aya aya eye

1 个答案:

答案 0 :(得分:2)

除了在fprintf整个字符串的最后,你不会向文件输出任何内容:

fprintf(out,"%s\n",my_string);

您需要在for循环中将printf("%s\n",ptr);更改为fprintf(out,"%s\n",ptr);。否则它只会将所有内容输出到控制台。