memory_functions.c - a C program demonstrating uses of some C memory functions, including malloc(), calloc(), realloc(), free(), memset(), memcpy(), and memcmp().
Runnable Linux Commands
The command: gcc -Wall -Wextra -O2 -g -o memory_functions memory_functions.c
compiles the C source code located inside the file memory_functions.c. See more details here.
The command: . ./.short_prompt
executes code inside a file named .short_prompt and sources it (applies all the changes to the current session.) See more details here.
The command: . ./.long_prompt
executes code inside a file named .long_prompt and sources it (applies all the changes to the current session.) See more details here.