Give code to assign the string "Wilbur's brother Orville" to the member item of the variable to which head points. Hint: you need a function declared in cstring.

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

```
strcpy(head->item, "Wilbur's brother Orville");
```

Computer Science & Information Technology

You might also like to view...

Programs or data not actively being used by the other units are placed on the __________.

(a) output unit. (b) memory unit. (c) secondary storage unit. (d) central processing unit.

Computer Science & Information Technology

Referring to the accompanying figure, how would you select two non-contiguous files: Bikes and Flat Albert in Forsyth Park?

A. hold down the Shift key as you click each file B. hold down the Ctrl key as you click each file C. hold down the Alt key as you click each file D. just click each file

Computer Science & Information Technology