Consider the following declaration


		
					

Loading

โœช Choose the correct option.

Consider the following declaration


struct list {

int x;

struct list *next;

)*head;


The statement head.x = 100

A. assigns 100 to one element of the structure list
B. creates a node of type list and assigns a value to x
C. creates a head of the list
D. is an erroneous statement