Skip to content

Latest commit

 

History

History

0x0C-more_malloc_free

0x0C. C - More malloc, free

Description

This project is about manipulating memory on our programs. Second part

Files

Mandatory Tasks

File Description
0-malloc_checked.c Function that allocates memory using malloc
1-string_nconcat.c Function that concatenates two strings.
2-calloc.c Function that allocates memory for an array, using malloc.
3-array_range.c Function that creates an array of integers.

Advanced Tasks

File Description
100-realloc.c Function that reallocates a memory block using malloc and free