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 4 of 5.

Arun said:   1 decade ago
If we set the memory free...Will the variable get deleted ?

Roger said:   10 years ago
By Using Free-Var, you get random memory allocation.!

Vicky Mehta said:   1 decade ago
If delete the variable means that memory also free ?

Pavankumar said:   1 decade ago
What is the functionality of remove (variablename)?

Raki said:   1 decade ago
Yes free is the in built functio in "c" language.

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

V.S.Kaushik said:   1 decade ago
free(varname) is used to free the memory space.

Hai said:   1 decade ago
What is the difference between dalloc and free?

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

HARI said:   1 decade ago
Its just free the memory for the current use.


Post your comments here:

Your comments will be displayed after verification.