pointers
Matching exercise
Match the items on the right to the items on the left.
ptr = realloc(ptr , x)
free(ptr)
ptr= (castType*)calloc (n, size);
ptr =(castType*)malloc(size);
Dynamic memory allocation
realloc
free()
calloc()
malloc()
standard library functions