#include<stdio.h> #include<conio.h> #include<malloc.h> struct node { int num; struct node *next; }; typedef struct node NODE; NODE...
Separate names with a comma.