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 8030889
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T00:54:52+00:00 2026-06-05T00:54:52+00:00

I am trying to read Data from a Text file & storing it inside

  • 0

I am trying to read Data from a Text file & storing it inside a structure having one char pointer & an int variable.
During fetching data from file I know that there will be one string to fetch & one integer value.
I also know the position form where I have to start fetching.
What I don’t know is size of the string.
So, how can I allocate memory for that String.
Sample code is here :

struct filevalue
{
 char *string;
 int integer;
} value;    
fseek(ptr,18,SEEK_SET);//seeking from start of file to position from where I get String
fscanf(ptr,"%s",value.string);//ptr is file pointer

fseek(ptr,21,SEEK_CUR);//Now seeking from current position
fscanf(ptr,"%d",value.integer);

Thanks in advance for your help.

  • 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-05T00:54:53+00:00Added an answer on June 5, 2026 at 12:54 am

    Either

    1. malloc the maximum possible length
    2. read that much into the malloc’d block
    3. figure out where the real end of the string is
    4. write a \0 into your malloc’d block there so it behaves correctly as a nul-terminated string (and/or save the length too in case you need it)
    5. optionally realloc your block to the correct size

    Or

    1. malloc a reasonable guesstimate N for the length
    2. read that much
    3. if you can’t find the end of the string in that buffer:
      1. grow the buffer with realloc to 2N (for example) and read the next N bytes into the end
      2. goto 3
    4. write a \0 etc. as above

    You said in a comment that the max. string length is bounded, so the first approach is probably fine. You haven’t said how you figure out where the string ends, but I’m assuming there is some delimiter, or it’s right-filled with spaces, or something.

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

Sidebar

Related Questions

I'm trying to read data from a text file and assign it to arrays.
I am trying to read in data from a text file and do a
I am trying to read in data from a text file using numpy.loadtxt with
I'm trying to read data from a text file, clear it, and then write
I am trying to read in data from a text file (the time). and
I am trying to read data from a file stream as shown below: fileStream.Read(byteArray,
I'm trying to read data from a binary file and put it into a
I am trying to use a textreader to retrieve data from a text file
I am trying to read in a text file from an SQL query (SQL
I'm trying to read data from a.csv file to ouput it on a webpage

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.