/in/foo.cc: In constructor 'LinkList::LinkList()':
/in/foo.cc:33:25: error: expected unqualified-id before 'new'
int x; cin>>x; Node *new p=new Node(x);
^~~
/in/foo.cc:33:25: error: expected initializer before 'new'
/in/foo.cc:35:10: error: 'newp' was not declared in this scope
Head=newp;
^~~~
/in/foo.cc:37:16: error: 'newp' was not declared in this scope
tail->next=newp;
^~~~
/in/foo.cc:38:9: error: 'newp' was not declared in this scope
tail=newp;
^~~~
/in/foo.cc: In member function 'void LinkList::Append(int)':
/in/foo.cc:73:3: error: 'p' was not declared in this scope
p->next=newp; Count++;
^