C Programming - Memory Allocation - Discussion

Discussion Forum : Memory Allocation - Yes / No Questions (Q.No. 3)
3.
When we dynamically allocate memory is there any way to free memory during run time?
Yes
No
Answer: Option
Explanation:
Using free()
Discussion:
1 comments Page 1 of 1.

Venu said:   1 decade ago
What is the difference between below statements?

a=*p[5];
a=p[*5];
a=*(p[5]);

Any one tell me the difference please.

Post your comments here:

Your comments will be displayed after verification.