It seems like its always something new that I'm having trouble with. If anyone can help me that would be great. I enjoy this stuff, but its so hard to wrap my head around sometimes.
Anyways, the problem this time is i have to cin a series of values and information from an outside file.
The struct has to be defined as this:
1 2 3 4 5 6 7
struct Node {
string parts;
int date;
int score;
float price;
Node* next;
};
With my very limited knowledge of how pointers work (or structs), I really have no idea where to start or how to do it.
I just need a place to start. External links, suggestions, etc. anything would be great.