#include <iostream>
using namespace std;
struct node
{
int data;
struct node *next;
};
int main()
{
node *head;
node *temp;
node *last;
last=0;
int choice;
do
{
temp=new node();
cout<<"Enter values in a node:"<<endl;
...