#include#includetypedefstructnode{intisChecked;structnode*next;}node,*LinkList;LinkListcreateList(intsize){inti;LinkListp=(LinkList)malloc(sizeof(node));LinkListn;LinkListq;n=p;p->next=NULL;