#include <iostream> #include<cstdlib> #include<cstdio> using namespace std; typedef struct node1 { int data; struct node1 *next; }node1; node1 *create(); void insert_node(node1 *head,int x); void delete_node(node1 *head,int x); void destroy(node1 *head); void display(node1 *head); ...