here is the code that is causing the error
list_of_strings *add_to_list(list_of_strings * start, char dumb[])
{
list_of_strings *tmpptr = start; // (1)
start = new(list_of_strings); // (2)
start -> data = dumb; // (3)<--ERROR HERE
start -> next = tmpptr; // (4)
return start;
}
[C++ Error] hw3start.cpp(48): E2277 Lvalue required
bleh? i stared at it for awhile now and dont know what it means
