Multiple Choice
In a node type named MyNode, which of the following correctly declares a pointer to a node of that type?
A) MyNode* ptr;
B) MyNode ptr;
C) ptr myNode*;
D) MyNode.data* ptr;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q6: Given a linked list using the code
Q7: The constant NULL can be assigned only
Q8: If you want to make your linked
Q9: Given a linked list using the code
Q10: To add an item to a stack,
Q12: Dynamically allocated memory that is no longer
Q13: A stack is a specialized type of
Q14: If head is a NodePtr pointer variable,
Q15: There is no need for error checking
Q16: A queue is first-in-first-out data structure.