From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/memory%2Fmalloc.html | 52 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 devdocs/c/memory%2Fmalloc.html (limited to 'devdocs/c/memory%2Fmalloc.html') diff --git a/devdocs/c/memory%2Fmalloc.html b/devdocs/c/memory%2Fmalloc.html new file mode 100644 index 00000000..05f8d1f2 --- /dev/null +++ b/devdocs/c/memory%2Fmalloc.html @@ -0,0 +1,52 @@ +

malloc

Defined in header <stdlib.h>
void *malloc( size_t size );
+

Allocates size bytes of uninitialized storage.

+

If allocation succeeds, returns a pointer that is suitably aligned for any object type with fundamental alignment.

+

If size is zero, the behavior of malloc is implementation-defined. For example, a null pointer may be returned. Alternatively, a non-null pointer may be returned; but such a pointer should not be dereferenced, and should be passed to free to avoid memory leaks.

+ + +

malloc is thread-safe: it behaves as though only accessing the memory locations visible through its argument, and not any static storage.

+

A previous call to free or realloc that deallocates a region of memory synchronizes-with a call to malloc that allocates the same or a part of the same region of memory. This synchronization occurs after any access to the memory by the deallocating function and before any access to the memory by malloc. There is a single total order of all allocation and deallocation functions operating on each particular region of memory.

+
(since C11)

Parameters

+ +
size - number of bytes to allocate

Return value

On success, returns the pointer to the beginning of newly allocated memory. To avoid a memory leak, the returned pointer must be deallocated with free() or realloc().

+

On failure, returns a null pointer.

+

Example

#include <stdio.h>   
+#include <stdlib.h> 
+ 
+int main(void) 
+{
+    int *p1 = malloc(4*sizeof(int));  // allocates enough for an array of 4 int
+    int *p2 = malloc(sizeof(int[4])); // same, naming the type directly
+    int *p3 = malloc(4*sizeof *p3);   // same, without repeating the type name
+ 
+    if(p1) {
+        for(int n=0; n<4; ++n) // populate the array
+            p1[n] = n*n;
+        for(int n=0; n<4; ++n) // print it back out
+            printf("p1[%d] == %d\n", n, p1[n]);
+    }
+ 
+    free(p1);
+    free(p2);
+    free(p3);
+}

Output:

+
p1[0] == 0
+p1[1] == 1
+p1[2] == 4
+p1[3] == 9

References

See also

+ +
deallocates previously allocated memory
(function)
C++ documentation for malloc
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/memory/malloc +

+
-- cgit v1.2.3