Show two equivalent ways to set the count member in the ListNode variable to which head points.

Given the structure definition:
```
const int STRING_SIZE = 20;
struct ListNode
{
char item[STRING_SIZE];
int count;
ListNode * link;
};
ListNode *head = new ListNode;
```

```
head->gt;count = 12;
(*head).count = 12;
```

Computer Science & Information Technology

You might also like to view...

You are having issues with large files taking a long time to open or save. And it gets worse over time. You check the hard drive and it is fine. What could you do next?

A. Install the latest drivers from the hardware vendor B. Perform a scan of the drive for file fragmentation C. Run chkdsk on the workstation's hard drive D. Reformat the drive and reinstall the OS.

Computer Science & Information Technology

_________ registers enable the machine or assembly language programmer to minimize main memory references by optimizing use of registers.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology