I want to know how malloc and free work.
malloc
free
int main() { unsigned char *p = (unsigned char*)malloc(4*sizeof(unsigned char)); m
One implementation of malloc/free does the following: