I wrote a linked list program in C++ which compiles and works well. But I have been told that
a) I have to have two separate structs instead of one that contains both the info and the node; and,
b) that I have to use two pointers instead of the "count++" scheme I am using.
I have included the preprocessing section, the struct definition, the functions and the initial part of main() above - the rest a menu, etc.
Can anyone provide advice? Thanks kindly!
pce369