C malloc() function
C malloc() function - A memory allocator
The malloc() function is used to reserve a block of storage of size bytes. Unlike the calloc() function, malloc() does not initialize all elements to 0.
Syntax malloc() function
void *malloc(size_t size)
Parameters malloc() function
Name | Description | Required /Optional |
---|---|---|
size | Bytes to allocate. | Required |
Return value from malloc()
- Returns a pointer to the reserved space.
- NULL if not enough storage is available, or if size was specified as zero.
Example: malloc() function
The following example shows the usage of malloc() function.
Output:
String = w3resource.com, Address = 1905632
C Programming Code Editor:
Previous C Programming: C free()
Next C Programming: C realloc()