pointer to structure and self pointers
问题 What is the difference between self referential pointer in structure and pointer to structure? struct abc { int data; struct abc *next; } struct abc *pt; What are the differences between *next and *pt ?? How they differ in their use?? I am really in doubt between these two I am a beginner First example is used mainly for linked list Are pointer to structure node and self referential pointer the same thing? please see see-programming.blogspot.in/2013/05/chain-hashing-separate-chaining-with