Неверный номер приходит при доступе к структурам-членам - PullRequest
0 голосов
/ 11 декабря 2018

Я новичок в языке c.Я добавляю элементы структуры (int dd) в файл (file.txt) и сейчас пытаюсь прочитать этот файл для доступа к элементам структуры (Day.dd).Но когда я добавляю 5 к переменной с помощью функции scanf (), компилирую этот файл и запускаю, я не получил (Day = 5) . Я получил День = 1325715504

My code is:
#include <stdio.h>
#include <strings.h>
#include <stdlib.h>
struct DailyCost
{
    int dd;

} Day;
FILE *fp;
void add_dailycost();
void display();
void mainmenue();
int main()
{

    int j;
    fp = fopen("/home/mohit/projects/c/gedit_Dailyost/TextFiles/fileb.txt", "w+");
    rewind(fp);
    mainmenue();
    return 0;
}
void mainmenue()
{
    struct DailyCost day1;
    int j;
    printf("Enter 1 to add dailycost and enter 2 display dailycost.");
    scanf("%d", &j);
    switch (j)
    {
    case 1:
        add_dailycost(day1);
        break;
    case 2:
        display(day1);
        break;
    }
}
void add_dailycost(struct DailyCost Day)
{
    if (fp != NULL)
    {
        fseek(fp, 0L, SEEK_END);
    }
    int j;
    printf("Enter Day = ");
    scanf("%d", &Day.dd);
    fwrite(&Day, sizeof(struct DailyCost), 1, fp);
    printf("If menmenue press 1 and exit press 0 = ");
    scanf("%d", &j);
    if (j == 1)
    {
        mainmenue();
    }
    else
    {
        printf("\nThank you");
        fclose(fp);
        exit(0);
    }
}
void display(struct DailyCost Day)
{
    fread(&Day, sizeof(struct DailyCost), 1, fp);
    rewind(fp);
    printf("Day =   %d\n", Day.dd);
    fclose(fp);
}

Пожалуйста, подскажите, что я сделал неправильно, чтобы закодировать программу.И как решить эту проблему, взяв мой код.

1 Ответ

0 голосов
/ 11 декабря 2018

В соответствии с предложением Клаус Гюттер использует вызов по ссылке, чтобы внести изменения в исходный объект.

#include <stdio.h>
#include <strings.h>
#include <stdlib.h>
struct DailyCost
{
    int dd;

} Day;
FILE *fp;
void add_dailycost();
void display();
void mainmenue();
int main()
{

    int j;
    fp = fopen("/home/mohit/projects/c/gedit_Dailyost/TextFiles/fileb.txt", "w+");
    rewind(fp);
    mainmenue();
    return 0;
}
void mainmenue()
{
    struct DailyCost day1;
    int j;
    printf("Enter 1 to add dailycost and enter 2 display dailycost.");
    scanf("%d", &j);
    switch (j)
    {
    case 1:
        add_dailycost(&day1);
        break;
    case 2:
        display(&day1);
        break;
    }
}
void add_dailycost(struct DailyCost* Day) /*if you pass simply 
  struct DailyCost , all the contents of original objects will be copied 
  into a new memory area, to be used in this function and will be 
  destroyed when this function exits. */
/* if you pass just the address of your object,you are working on 
   the same memory area as you passed from,in this case from mainmenue. */
{
    if (fp != NULL)
    {
        fseek(fp, 0L, SEEK_END);
    }
    int j;
    printf("Enter Day = ");
    scanf("%d", &Day->dd);
    fwrite(Day, sizeof(struct DailyCost), 1, fp);
    printf("If menmenue press 1 and exit press 0 = ");
    scanf("%d", &j);
    if (j == 1)
    {
        mainmenue();
    }
    else
    {
        printf("\nThank you");
        fclose(fp);
        exit(0);
    }
}
void display(struct DailyCost* Day) /* passing the object instead 
  of reference would also work here. But just for the display 
  purpose, you need not to unnecessarily create a new memory. */
{
    fread(Day, sizeof(struct DailyCost), 1, fp);
    rewind(fp);
    printf("Day =   %d\n", Day->dd);
    fclose(fp);
}

Читайте о вызов по значению и вызов по ссылке и с передачей структуры в качестве аргумента в Интернете, если вы еще не поняли.

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