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

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

ListNode *head = new ListNode;
```


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

Computer Science & Information Technology

You might also like to view...

The quality of the images that a camera can take is determined by the camera's ________

A) shutter lag B) focal length C) resolution D) burst mode

Computer Science & Information Technology

________ is a Windows XP design goal inherited from the corporate line of Windows operating systems.

a) A user-friendly GUI b) Data reliability c) Advanced multimedia support d) Hard real time guarantees

Computer Science & Information Technology

Describe three general guidelines you should follow when scheduling a meeting.

What will be an ideal response?

Computer Science & Information Technology

To remove the duplicate records found in a table, you would run a(n) ________ query

Fill in the blank(s) with correct word

Computer Science & Information Technology