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...
How has distributed computing affected operating system design?
What will be an ideal response?
Computer Science & Information Technology
Which of these are reasons for partitioning a system?
A) to keep transactions secure B) to make it easier to move to a new system C) to allow the system to be upgraded later D) to ensure that if the business is sold, the data can be given to the new owners
Computer Science & Information Technology
INTERPOL is the European Union law enforcement agency
Indicate whether the statement is true or false.
Computer Science & Information Technology
What are the attributes of a good software test?
What will be an ideal response?
Computer Science & Information Technology