struct node{ char name[10];struct node * next;}p;char n[10];scanf ("%s", n);strcpy(p->name, n);p -> next = NULL;