>>759
> struct LIST *newcellも**型ということですよね?

違います

> struct LIST *newcellが**型というのが理解できません

違います

struct LIST *newcell の型は struct LIST * です
struct LIST **ptr の型は struct LIST ** です

*ptr=newcell

これは、左側の*に注目
何をしているかは、もうわかるよね?
>>757で分かってるって言ったよね自分で