#include<stdio.h> #include<stdlib.h> typedef struct num { int num; struct num *next; }link; link* create(int n,int a[]) { link* head,*now,*node; he...