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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!