free in C

The free function in C is used to free or evict memory that was previously dynamically allocated using functions such as malloc, calloc, or realloc. […]

malloc in c

The function is used malloc(xx) where xx is an int calculates the size of the structure in bytes In C, malloc returns a void* pointer […]

linking in c

the linker (the program that links the .o and libraries) The GCC linker does not first read main.o in cascade. The linker processes all object […]