+ 2
What does this code mean?
Struct Element { Struct Element *pointer; };
1 Respuesta
+ 8
Pointers are used to save the memory location of a variable... And that pointer must be the same type of the value that it points.
And that code means: an struct which has an element able to contain the memory location of another same type struct.