![]() |
how do i release the memory ocupied by a?
int x = 10;
int y = 12; int *ax = &x int *ay = &y int*a = new int; int temp; |
Re: how do i release the memory ocupied by a?
Memory allocated with new is freed with delete, and new[] with delete[].
|
| All times are GMT +5.5. The time now is 16:02. |