以下代码不起作用..为什么?

时间:2014-07-16 15:48:41

标签: c arrays string struct io

以下代码未按预期工作..

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdbool.h>

struct dest
{
    char filename[20], keyword[20];
    bool opened;
    FILE * stream;
};


void display_data(const struct dest p) {
    printf("Keyword: %s, Filename: %s, Used: %s\n", p.keyword, p.filename, p.opened ? "Yes" : "No");
}

int main(int argc, char const *argv[])
{
    // float lon, lat;
    // char info[80];

    if ((argc+1) % 2) {
        fprintf(stderr, "Usage: %s file_to_read file_for_unknown type file type file ...\n", argv[0]);
        return 2;
    }

    if (access(argv[1], F_OK) == -1) {
        fprintf(stderr, "File can't be accessed: %s\n", argv[1]);
        return 2;
    }

    const short pairs = (argc-3)/2;
    struct dest data[pairs];

    short times = 4;
    for(short i = 4; i < argc; i += 2) {
        struct dest data[i-times];
        data[i-times].opened = false;
        strcpy(data[i-times].keyword, argv[i-1]);
        strcpy(data[i-times].filename, argv[i]);
        // display_data(data[i-times]);
        times += 1;
    }

    display_data(data[0]);

    return 0;
}

当我尝试运行它时会发生什么..

  

./分类spooky.csv other.csv UFO UFOS.csv
  关键字:?,文件名:�@,使用:否

哪个没有意义..
我一直试图找出解决方案..静脉..
我不明白问题出在哪里..

参数解析如下:

  

第一个参数:程序应该读取的文件(暂时忽略)
  第二个参数:程序应存储在 spooky.csv文件中的任何未知信息的文件(在此实现中也被忽略)
  其他参数:它们被解析成对,第一个是关键字,第二个是文件..

我对此过滤问题的解决方案是创建一个结构数组,并在每个结构中我存储关键字,文件名和文件io流(我现在忽略它)..

任何帮助都将受到高度赞赏..

1 个答案:

答案 0 :(得分:4)

您有2个struct dest data[]数组。内在的人正在掩盖外部 - 摆脱它。

如果您打开警告,您的编译器可能会对此发出警告。