/in/foo.cc:13:1: error: expected ';' after class definition
}
^
/in/foo.cc: In member function 'void SeqList::CreateList(int)':
/in/foo.cc:18:4: error: 'head' was not declared in this scope
p=head;
^~~~
/in/foo.cc: In member function 'void SeqList::Delete(int)':
/in/foo.cc:33:4: error: 'head' was not declared in this scope
p=head;
^~~~
/in/foo.cc:51:10: error: return-statement with a value, in function returning 'void' [-fpermissive]
return x;
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:57:10: warning: unused variable 'S' [-Wunused-variable]
SeqList S;
^