Wednesday, November 30, 2016

C Memory management Functions

Memory management Functions:
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 );

stdlib.h
Numeric conversion Functions
Pseudo-random sequence generation Functions
Memory management Functions
Communication with the environment Functions
Searching and sorting utilities Functions
Integer arithmetic Functions
Multibyte/wide character conversion Functions
Multibyte/wide string conversion 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

No comments:

Post a Comment