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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:12:32+00:00 2026-06-14T00:12:32+00:00

Output says all array values are anxiety when the words of file fileIn are

  • 0

Output says all array values are “anxiety” when the words of file fileIn are printing correctly and in order. My problem may be in the realloc()?

    ReadIn = malloc(sizeof(char) * 50);

    while(fscanf(fileIn, "%s", ReadIn) != EOF){
        wordlist = (char **)realloc( wordlist, (numwords + 1) * sizeof(char*));
        printf("%s\n",ReadIn);
        wordlist[numwords] = ReadIn;
        numwords++;
    }

    for(i = 0; i < numwords; i++){
        printf("%d %s\n", i , wordlist[i]);
    }

Output:

This
is
a
journey
into
fear
and
anxiety.
0 anxiety.
1 anxiety.
2 anxiety.
3 anxiety.
4 anxiety.
5 anxiety.
6 anxiety.
7 anxiety.
  • 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-14T00:12:34+00:00Added an answer on June 14, 2026 at 12:12 am

    You make each array pointer point to the ReadIn buffer, which will contain the last string that was read in.

    You want to duplicate each string that’s read in:

    //change: wordlist[numwords] = ReadIn;
    wordlist[numwords] = strdup(ReadIn);
    

    You should also take care to free each of those strings when you’re done with the wordlist array.

    And if your compiler’s runtime library doesn’t have the non-standard, but common, strdup() function, it’s easy to implement (or find a public domain version of).

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

Sidebar

Related Questions

Question says it all, really. I'm not sure what the problem is. I'm fairly
I'm trying to extract all words from a string into an array, but i
Well, the subject says it all, basically. I have a command-line utility that may
jmap -heap gives me output that says: New Generation Used 100%, Eden Space Used
im programming in c++ using ado, the documnet on tsql says the OUTPUT clause
The Zend Framework Manual says the following: 60.3.1. Escaping Output One of the most
Partial output from git blame <file> : ... d6182477 (<author> 2012-06-22 09:44:02 -0400 239)
I am trying to get a foreach loop to display all the values of
the title really says it all. I'm trying to populate a fullcalendar widget through
Title really says it all. There is the -O option for opening splits vertically,

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.