I'm learning how to use linked lists and can't figure out how to access the elements of the structure I am currently pointing to with my *next pointer.
Also, "next" isn't a keyword for these types of operations, is it?
If anyone has an example of a linked list I could see I would be grateful.
This is my code thus far (not very much):
We've been working on this for the last few hours, and none of our approaches are working, Any tips/tutorials please?Code:struct list { struct list *ptrnext; char letter; int number; };



LinkBack URL
About LinkBacks


