1

このプログラムではコンパイルされますが、セグメンテーション違反が発生します。これはsscanf(str, "%d %s %s %d %f", &pos, z[pos-1].city, z[pos-1].state, &z[pos-1].population, &z[pos-1].growth);、この行z[pos-1].city, z[pos-1].stateに & がないためですが、それを追加すると警告が表示されます: format â%sâ expects type âchar *â, but argument 4 has type âchar (*)[200]â.

これを行う別の方法があると確信しています。構造体を使用し、ファイルストア情​​報を構造体の配列に読み込んでから、配列を表示する必要があります。printf は、都市と州を char 配列に格納するだけで機能します。

配列に初期化しようとした領域にコメントを付けましたが、3 つすべての char 配列値 (a、「a」、「a」) を持つ互換性のない型がありました。

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

typedef struct{
    int rank;
    char city[200];
char state[50];
int population;
float growth;
}city_t;

void read_data(city_t *z)
{
    FILE *inp;
    inp = fopen("cities.dat", "r");
    char str[256];
    int pos = 0;
    if(inp==NULL)
    {
        printf("The input file does not exist\n");
    }
    else
    {
        /*reads and test until eof*/
        while(1)
        {
            /*if EOF break while loop*/
            if(feof(inp))
            {break;}
            else
            {
                /*read in a number into testNum*/
                //fscanf(inp, "%d", &testNum);
                fgets(str,sizeof(str),inp);
                sscanf(str, "%d %s %s %d %f", &pos, z[pos-1].city, z[pos-1].state, &z[pos-1].population, &z[pos-1].growth);
                z[pos-1].rank = pos;
            }
        }
    }
    fclose(inp);
}

void print_data(city_t *z, int size)
{
    int i;
    printf("rank\tcity\t\tstate\tpopulation\t\tgrowth\n");
    for(i=0;i<size;i++)
    {
        printf("%d\t%s\t\t%s\t\%d\t\t%f\n", z[i].rank, z[i].city, z[i].state, z[i].population, z[i].growth);
    }
}

int main()
{
    int i;
    city_t cities[10];
    /*for(i;i<10;i++)
    {
        cities[i].rank = 0;
        cities[i].city = "a";
        cities[i].state = "a";
        cities[i].population = 0;
        cities[i].growth = 0.00;
    }*/
    read_data(&cities[0]);
    print_data(&cities[0], 10);
    return(0);
}

{
dat file
1 New_York NY 8143197 9.4
2 Los_Angeles CA 3844829 6.0
3 Chicago IL 2842518 4.0
4 Houston TX 2016582 19.8
5 Philadelphia PA 1463281 -4.3
6 Phoenix AZ 1461575 34.3
7 San_Antonio TX 1256509 22.3
8 San_Diego CA 1255540 10.2
9 Dallas TX 1213825 18.0
10 San_Jose CA 912332 14.4
}
4

1 に答える 1

0

read_dataでは、z[pos-1]....posが0から始まる場所にスキャンします。したがって、配列の拡張を超えて(前に)書き込みます。

のグローバル置換を実行pos-1し、posインクリメントするだけposです。fscanfを使用することもできるので、次のようになります。

 for (int pos=0; !feof(inp); ++pos)
 {
     fscanf(inp, "%d %s %s %d %f",
            &z[pos].rank,
            z[pos].city,
            z[pos].state,
            &z[pos].population,
            &z[pos].growth);
 }
于 2012-11-19T00:43:47.460 に答える