Give a typedef statement that hides the pointer operator *. Call the new type identifier NodePtr.

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

```
typedef Node* NodePtr;
```

Computer Science & Information Technology

You might also like to view...

The ________ view of a form allows a user to view the data while making changes to the elements of the form

A) Print B) Form C) Layout D) Design

Computer Science & Information Technology

If users are sure the file is safe, they will need to click ________ to allow Access to fully open the database file to viewing and editing

Fill in the blank(s) with correct word

Computer Science & Information Technology