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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:50:13+00:00 2026-06-15T13:50:13+00:00

What form is correct in allocating string in C? char *sample; sample = malloc

  • 0

What form is correct in allocating string in C?

char *sample;

sample = malloc ( length * sizeof(char) );

or

sample = malloc ( length * sizeof(char*) );

Why does char* take 4 bytes when char takes 1 byte?

  • 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-15T13:50:14+00:00Added an answer on June 15, 2026 at 1:50 pm

    Assuming the goal is to store a string of length characters, the correct allocation is:

    sample = malloc(length + 1);
    

    Notes:

    1. Don’t use sizeof (char), since it’s always 1 it doesn’t add any value.
    2. Remember the terminator, I assumed (based on name) that length is the length in visible characters of the string, i.e. the return of strlen() will be length.
    3. I know you didn’t, but it’s worth pointing out that there should be no cast of the return value from malloc(), either.

    The reason char * is larger is that it’s a pointer type, and pointers are almost always larger than a single character. On many systems (such as yours, it seems) they are 32 bit, while characters are just 8 bits. The larger size is needed since the pointer needs to be able to represent any address in the machine’s memory. On 64-bit computers, pointers are often 64 bits, i.e. 8 characters.

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

Sidebar

Related Questions

what will be correct form of this code in c? char *x = malloc(100);
EDIT My Ajax form gets correct Id to update a content and a replace
I'm trying to figure out what the correct form of exceptions to throw would
What is the correct plural form of the portmanteau mutex . Is it mutexes
I have a log in form on my app. Once a correct user name
At first, I show a login form. When a user enters the correct id
Is the script below in correct form of JavaScript? function foo(){ return function(x){ alert(x)
my CakePHP (1.2.5.) doesn't validate my form correct. $this->UserData->save($this->data); gives me always a true
I have a click event that checks to see if a form is correct
I have an HTML table used to display some information in the correct form.

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.