Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

how to free memory in c

int *example = NULL; //create pointer
example = malloc(sizeof(int)); //allocate memory
free(example); //deallocate memory
 
PREVIOUS NEXT
Tagged: #free #memory
ADD COMMENT
Topic
Name
6+1 =