Question: Suppose we have a struct node defined as follows: struct node { int data; struct node * next; }; We have two variables, named n1
Suppose we have a struct "node" defined as follows: struct node { int data; struct node * next; }; We have two variables, named n1 and n2, which are both of type struct node *. Write a statement that makes the next field of the node pointed to by n1 equal n2. (In other words, the first node will point to the second node, using its next field.) Do not change the values of the variables.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
