Difference between revisions of "cpp/memory/c/malloc"
From cppreference.com
(+see also) |
(→See also) |
||
Line 29: | Line 29: | ||
{{dcl list template | cpp/memory/new/dcl list operator_new}} | {{dcl list template | cpp/memory/new/dcl list operator_new}} | ||
{{dcl list template | cpp/memory/dcl list get_temporary_buffer}} | {{dcl list template | cpp/memory/dcl list get_temporary_buffer}} | ||
− | {{dcl list see c | c/memory/ | + | {{dcl list see c | c/memory/malloc}} |
{{dcl list end}} | {{dcl list end}} | ||
Revision as of 05:53, 14 May 2012
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
This section is incomplete Reason: no example |
See also
C documentation for malloc
|