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

  • Home
  • SEARCH
  • 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 9319753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T03:27:46+00:00 2026-06-19T03:27:46+00:00

Im trying to store some user-input names in a ragged array. However i get

  • 0

Im trying to store some user-input names in a ragged array. However i get an error during run-time and im trying to figure out what has gone wrong.

My code:

int num, count, i;
char *myNames[10];

printf("Enter the number of names: ");
scanf( "%d" , &num);

fflush(stdin);

    // Ask user to input the name
for( count = 0 ; count <= num ; count++)
{
    printf("Enter a name: ");
    scanf( "%s" , myNames[count]);
    fflush(stdin);
}

    // To check if names are stored correctly
printf("%s", *myNames[1]);

return 0;
}

Grateful if anyone can share some help, or at least point me in the right direction. Thanks

  • 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-19T03:27:47+00:00Added an answer on June 19, 2026 at 3:27 am

    You need to allocate space for the strings themselves; currently you only allocate an array of 10 pointers, but they never actually point to any valid memory; hence the error that you get when scanf() tries to write into them.

    Of course, in order to allocate the right amount of space for a string you need to know how many characters are in the string, which is a bit of a chicken-and-egg problem; you should probably use one stack-allocated array to let scanf() write into and then strdup() that, like this:

    for( count = 0 ; count <= num ; count++)
    {
       printf("Enter a name: ");
       char temp[1024];
       scanf( "%s" , temp);
       myNames[i] = strdup(temp);
       fflush(stdin);
    }
    

    … and of course if you wanted your program to be 100% correct and avoid a memory leak, you’d need to free() each of the 10 strings before returning, but if this is just a toy program you can ignore that and just let the OS deal with cleaning up.

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

Sidebar

Related Questions

I'm trying to create a 2D array to store some values that don't change
I am trying to store user input in a variable and clean that variable
I'm trying to store some metadata in a .txt file using xattr on a
I'm trying to store some binary data obtained from read() in my buffer using
I am trying to store some soundclips which are tagged with Images chosen from
I am trying to store some integers in a file and I am storing
I am trying to create a database to store some questions and answers for
I'm trying to save some specific JSon data and store them in a simple
I am trying to extract some part of string and store it to hbase
I'm trying to use ASIFormDataRequest for iphone to get some values from my mysql

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.