Show how to return the store allocated by this statement to the heap manager for reallocation.
Given the type definitions:
```
const int STRING_SIZE = 20;
struct ListNode
{
char item[STRING_SIZE];
int count;
ListNode * link;
};
ListNode *head = new ListNode[10];
```
delete [] head;
Computer Science & Information Technology
You might also like to view...
The ________ axis is the vertical axis
Fill in the blank(s) with correct word
Computer Science & Information Technology
You can edit the data when you paste Excel data as a PowerPoint table on a slide.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology