#include <stdio.h>#include <malloc.h>typedef char datetype;typedef struct { datetype date; struct node *next;}listnode;typedef listnode *linklist;listnode *p;linklist head;listnode creatnode();void outnode(listnode *head);void main(){creatnode( );outnode( head);
}listnode creatnode(){ char...