About 71,300 results
Open links in new tab
  1. malloc (3) - Linux manual page - man7.org

    The malloc (), calloc (), realloc (), and reallocarray () functions return a pointer to the allocated memory, which is suitably aligned for any type that fits into the requested size or less. On …

  2. malloc (3) — Arch manual pages

    The malloc () function allocates size bytes and returns a pointer to the allocated memory. The memory is not initialized. If size is 0, then malloc () returns a unique pointer value that can later …

  3. Dynamic Memory Allocation in C: malloc(), calloc(), realloc(), free()

    Sep 16, 2024 · Learn dynamic memory allocation in C using malloc (), calloc (), realloc (), and free () functions with detailed examples, syntax, and explanations.

  4. malloc - Open Group

    The malloc () function shall allocate unused space for an object whose size in bytes is specified by size and whose value is unspecified. The order and contiguity of storage allocated by …

  5. malloc: allocate and free dynamic memory | Man Page - ManKier

    Nov 17, 2024 · The malloc () function allocates size bytes and returns a pointer to the allocated memory. The memory is not initialized. If size is 0, then malloc () returns a unique pointer …

  6. Malloc from Scratch: Diving into Memory's Secret Keeper

    At its core, malloc stands for memory allocation. In C programming and its derivatives, it's a function that reserves a contiguous block of memory of a specified size and returns a pointer …

  7. malloc (3): allocate/free dynamic memory - Linux man page

    The malloc () function allocates size bytes and returns a pointer to the allocated memory. The memory is not initialized. If size is 0, then malloc () returns either NULL, or a unique pointer …

  8. The GNU Allocator (The GNU C Library)

    The malloc implementation in the GNU C Library is derived from ptmalloc (pthreads malloc), which in turn is derived from dlmalloc (Doug Lea malloc). This malloc may allocate memory in …

  9. malloc Algorithms: Memory Management in LM

    Sep 14, 2024 · malloc() is a function in LM used for dynamic memory allocation. It allocates a specified amount of memory during program execution, and this memory is typically taken …

  10. malloc (3p) - Linux manual page - man7.org

    The malloc () function shall allocate unused space for an object whose size in bytes is specified by size and whose value is unspecified. The order and contiguity of storage allocated by …