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.

```
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...

Windows Hello, a new feature in the Windows 10 operating system, allows a user to log in using the ________ instead of typing a password

A) keyboard B) microphone C) function keys D) camera

Computer Science & Information Technology

Which two connections would most likely be used for external hard drive connectivity on a current computer? (Select two.)

A) exFAT B) eSATA C) USB D) IEEE 1294 E) SATA F) PATA G) SCSI

Computer Science & Information Technology