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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:11:20+00:00 2026-05-17T22:11:20+00:00

I’m just reading about malloc() in C. The Wikipedia article provides an example ,

  • 0

I’m just reading about malloc() in C.

The Wikipedia article provides an example, however it justs allocate enough memory for an array of 10 ints in comparison with int array[10]. Not very useful.

When would you decided to use malloc() over C handling the memory for you?

  • 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-05-17T22:11:20+00:00Added an answer on May 17, 2026 at 10:11 pm

    Dynamic data structures (lists, trees, etc.) use malloc to allocate their nodes on the heap. For example:

    /* A singly-linked list node, holding data and pointer to next node */
    struct slnode_t
    {
        struct slnode_t* next;
        int data;
    };
    
    typedef struct slnode_t slnode;
    
    /* Allocate a new node with the given data and next pointer */
    slnode* sl_new_node(int data, slnode* next)
    {
        slnode* node = malloc(sizeof *node);
        node->data = data;
        node->next = next;
        return node;
    }
    
    /* Insert the given data at the front of the list specified by a 
    ** pointer to the head node
    */
    void sl_insert_front(slnode** head, int data)
    {
        slnode* node = sl_new_node(data, *head);
        *head = node;
    }
    

    Consider how new data is added to the list with sl_insert_front. You need to create a node that will hold the data and the pointer to the next node in the list. Where are you going to create it?

    • Maybe on the stack! – NO – where will that stack space be allocated? In which function? What happens to it when the function exits?
    • Maybe in static memory! – NO – you’ll then have to know in advance how many list nodes you have because static memory is pre-allocated when the program loads.
    • On the heap? YES – because there you have all the required flexibility.

    malloc is used in C to allocate stuff on the heap – memory space that can grow and shrink dynamically at runtime, and the ownership of which is completely under the programmer’s control. There are many more examples where this is useful, but the one I’m showing here is a representative one. Eventually, in complex C programs you’ll find that most of the program’s data is on the heap, accessible through pointers. A correct program always knows which pointer “owns” the data and will carefully clean-up the allocated memory when it’s no longer needed.

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

Sidebar

Related Questions

I have just tried to save a simple *.rtf file with some websites and
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I've got a string that has curly quotes in it. I'd like to replace
I want use html5's new tag to play a wav file (currently only supported
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a JSP page retrieving data and when single or double quotes are
I'm looking for suggestions for debugging... If you view this site in Firefox or
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,

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.