Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7780869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:02:40+00:00 2026-06-01T19:02:40+00:00

I would like to read a file that has the sample number, values and

  • 0

I would like to read a file that has the sample number, values and status(1.1, 23,0). I used a Struct to hold that information. I will pass the function struct array and the file location.

#include <stdio.h>

struct Data_point
{
    long sampleNumber;
    double value;
    int status;
};


int filldata(struct Data_point *a, const char *filelocation)
{
    FILE *f;
    if((f=fopen(filelocation,"r"))==NULL)
    {
        printf("You cannot open");
    }
    fscanf(f, "%ld%lf%d", a.sampleNumber, a.value, a.status);
}



int main(void)
{
    struct Data_point data[10];
    filldata(data, "/home/alexchan/IntrotoC/rec11/dataPoints.txt");
    return 0;
}

But, I got an error saying, “request for member not a structure”…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T19:02:41+00:00Added an answer on June 1, 2026 at 7:02 pm

    One problem is that the filldata() is taking a pointer argument. So you use -> to address members not “.”. So a.sampleNumber should be a->sampleNumber for example.

    Another issue is that filldata() is reading in a single struct, but you are passing it the pointer to the top of the array, which is synonymous with &(data[0]). So this function will just overwrite that first element if you call it repeatedly (which you didn’t). If you call it in a loop you will need to pass it in pointers to the individual array members:

    for(int i = 0; i < 10; ++i){
    filldata(&(data[i]), "/home/alexchan/IntrotoC/rec11/dataPoints.txt");
    }

    You could actually use data + i as the first arg instead of &(data[i]) but I like the latter as I find it more readable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to read a file in R as a table for a
In java i would like to read a file line by line and print
I would like to read a text file and input its contents into an
I would like to read a DICOM file in C#. I don't want to
I would like to read the last 1 megabyte of a MP3 file and
I would like to know how is possible to read a file placed in
I would like to read a little more about the + that is usually
I have a business layer class that uses System.IO.File to read information from various
I would like to read Rails documentation locally though gem server. I go to
I would like to read a website asynchronously, which isnt possible with urllib as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.