Explain the use of structures with pointers
C permits a pointer to a structure variable. In fact a pointer to a structure is same to a pointer to any other variable. The pointer points to the first element of the structure. A structure can have members which points to a structure variable of the similar type; such structures are known as self-referential structures and widely used in dynamic data structures like trees, linked list etc.