Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/memory/c/malloc"

From cppreference.com
< cpp‎ | memory‎ | c
m (Shorten template names. Use {{lc}} where appropriate.)
m (Update links.)
Line 27: Line 27:
 
===See also===
 
===See also===
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/memory/new/dcl list operator_new}}
+
{{dsc inc | cpp/memory/new/dsc operator_new}}
{{dsc inc | cpp/memory/dcl list get_temporary_buffer}}
+
{{dsc inc | cpp/memory/dsc get_temporary_buffer}}
 
{{dsc see c | c/memory/malloc}}
 
{{dsc see c | c/memory/malloc}}
 
{{dsc end}}
 
{{dsc end}}

Revision as of 22:12, 31 May 2013

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
Dynamic memory management
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Allocators
Garbage collection support
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)



 
Defined in header <cstdlib>
void* malloc( std::size_t size );

Allocates size bytes of uninitialized storage.

If allocation succeeds, returns a pointer to the lowest (first) byte in the allocated memory block that is suitably aligned for any object type.

If size is zero, the behavior is implementation defined (null pointer may be returned, or some non-null pointer may be returned that may not be used to access storage)

Contents

Parameters

size - number of bytes to allocate

Return value

Pointer to the beginning of newly allocated memory or null pointer if error has occurred. The pointer must be deallocated with free().

Notes

This function does not call constructors or initialize memory in any way. Thus preferred method of memory allocation is new expression.

Example

See also

allocation functions
(function) [edit]
(deprecated in C++17)(removed in C++20)
obtains uninitialized storage
(function template) [edit]
C documentation for malloc