Memory management Functions:
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
| malloc | void* malloc( size_t size ); |
| calloc | void* calloc( size_t nmemb, size_t size ); |
| realloc | void *realloc( void *ptr, size_t new_size ); |
| free | void free( void* ptr ); |
| aligned_alloc(C11) | void *aligned_alloc( size_t alignment, size_t size ); |
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
No comments:
Post a Comment