Relatively new to c++(so this code may seem idiotic), I have slowly been teaching myself to code using C++ since last year and I'm stumbling on linked lists. This is the output and error I get when I run the program--
Please enter the names of the students(Last Name, First Name) Telephone Number and Street Address
1 [sig] CS 2 Project 2 1068 open_stackdumpfile: Dumping stack trace to CS 2 Project 2.exe.stackdump
I'm fairly sure this means i'm accessing memory that isn't supposed to be accessed but seeing as there are no actual ERRORS in my code i'm sort of stumped on where to go next. I am attempting to define a structure with 3 fields string, int and pointer(which can point to a structure of its own kind) then I must create a dynamic linked list using the structure previously defined with at least 10 nodes.
This is written in Cygwin for Eclipse and is on a windows 7 64bit
Again there are no errors showing in my code, but when I try to compile I recieve the stackdump error and my code terminates before any user interaction.