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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:15:53+00:00 2026-06-09T10:15:53+00:00

I am trying to build a char array of words using calloc. What I

  • 0

I am trying to build a char array of words using calloc.

What I have:

char** word;
word=(char**)calloc(12,sizeof(char*));
for(i=0;i<12;i++){
word[i]=(char*)calloc(50,sizeof(char));
}

Is this correct if I want a char array that has 12 fields each capable of storing 50 characters?

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-09T10:15:55+00:00Added an answer on June 9, 2026 at 10:15 am

    The code is correct. Some points:

    • No need to cast return value of calloc() ( Do I cast the result of malloc? )
    • sizeof(char) is guaranteed to be 1

    So code could be rewritten as:

    char** word;
    int i;
    
    word = calloc(12, sizeof(char*));
    for (i = 0; i < 12; i++)
        word[i] = calloc(50, 1);
    

    In C, most of the functions that operate on ‘strings’ require the char array to be null terminated (printf("%s\n", word[i]); for example). If it is required that the buffers holds 50 characters and be used as ‘strings’ then allocate an additional character for the null terminator:

    word[i] = calloc(51, 1);
    

    As commented by eq- a less error prone approach to using sizeof is:

    word = calloc(12, sizeof(*word));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to build a function that takes 1 param: the number as char[]
I'm trying to make a word puzzle game, and for that i'm using a
I'm trying to build a char array for storing the return value of a
I am trying to build a C++ code using NDK in android. I have
Trying to build openssl-fips-2.0 with NDK, before I was lucky found this link and
I'm trying to build words in arrays by their key value in a dictionary.
I am currently trying to build some test code that uses Google C++ Test
I am trying to build a list of strings that I need to pass
Hey guys I am trying to build a database that maps NSStrings to int.
I have another beginner's question that hopefully someone can help with. I'm trying to

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.