C Programming - Structures, Unions, Enums - Discussion

Discussion Forum : Structures, Unions, Enums - General Questions (Q.No. 1)
1.
How will you free the allocated memory ?
remove(var-name);
free(var-name);
delete(var-name);
dalloc(var-name);
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
50 comments Page 5 of 5.

Free allocated memory means it free variable. said:   1 decade ago
Free allocated memory means it free variable.

Amreen said:   1 decade ago
free() is build in function in C in stdlib.h.

Sindhu said:   1 decade ago
What is difference between delete and free ?

Ryt one said:   1 decade ago
What is the difference in free and delete?

Kartheek said:   9 years ago
Using free.

Void free(void * ptr);

V.lakshminarayana said:   1 decade ago
What is dalloc functionality in c?

Ashok said:   1 decade ago
What is mean by malloc and calloc?

Narasimham said:   1 decade ago
What is meant of calloc?

HAI said:   1 decade ago
What is meaning of free?

Prithvi said:   1 decade ago
Itz correct..


Post your comments here:

Your comments will be displayed after verification.