+ 2

What does this code mean?

Struct Element { Struct Element *pointer; };

25th Jan 2018, 3:32 PM
Youssif Almassri
Youssif Almassri - avatar
1 Antwort
+ 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.
25th Jan 2018, 3:39 PM
Fabio