36.6k views
3 votes
. We are required to remember that once a class is declared, a class becomes a _____________, so we can use the class name as the type for the pointer

1 Answer

2 votes

Answer:

valid data type.

Step-by-step explanation:

When we create a class it becomes a valid data type that we can use in our program.The class data type can be used as a pointer.One such example that we use most often is the Linked List Nodes.First we create a class name Node and then create a pointer of type Node which points top another Node.

There are other examples also such as:-

Binary tree Nodes,Binary search tree Nodes etc.

User Laurel
by
8.2k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.