What is the output produced by the following code? (As always, you are to assume that the code is embedded in a correct and complete program.

Given the type definitions:
```
const int STRING_SIZE = 20;
struct ListNode
{
char item[STRING_SIZE];
int count;
ListNode * link;
};
```
```
ListNode * head = new ListNode;
strcpy( head->item, "Stop Light");
head->count = 10;
cout << (*head).item << endl;
cout << head->item << endl;
cout << (*head).count << endl;
cout << head->number << endl;
```


Stop Light
Stop Light
10
10

Computer Science & Information Technology

You might also like to view...

The work of actually vetting and compiling the competencies in the EBK was done by a group of ____.

A. experts B. subject matter experts C. field personnel D. researchers

Computer Science & Information Technology

A good practice is to make backups of your databases on different storage devices

Indicate whether the statement is true or false

Computer Science & Information Technology

A multihomed customer ___

a. Has multiple Internet connections b. Uses static routes c. Has an inside router d. Both a and b

Computer Science & Information Technology

A carbon ____________________ is a tiny, hollow tube made up of carbon atoms, used as part of a variety of products today.

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

Computer Science & Information Technology