Correct Answer : Option (C) : Reference to an element
Explanation :
free() function is used to free the memory used by the program.
Ex :
int *p = (int*) malloc(sizeof(int)); //allocation of memory.
free(p); // freeing the memory occupied by pointer p.