Try the following code.... #include<stdio.h> #include<malloc.h> typedef struct node { int data; struct node *next; }NODE; NODE...
Separate names with a comma.