#include #define null 0 #define len sizeof(struct lnode) int n; struct lnode *creatlist; struct lnode *listinsert; struct lnode *listdel; struct lnode{ int a; struct lnode *next; }; struct ln