C++ Programming/Code/Standard C Library/Functions/malloc

      malloc

      Syntax
      #include <cstdlib>
      void *malloc( size_t s );
      

      The function malloc() allocates a block of memory of size s. The memory remains uninitialized.

      If the operation fails, malloc() returns NULL.

      Related topics
      calloc - free - realloc
      Last modified on 14 February 2009, at 03:38