printf("Choose the Linked List Operation you would like to perform:\n");
printf("1. Insert element BEFORE another element\n2. Insert element AFTER another element\n3. Delete a given element from the list\n4. Traverse the list\n5. Reverse the list\n6. Sort the list\n7. Delete every alternate node in the list\n7. Insert an element in a sorted list\n");
scanf("%d",&choice);
switch(choice)
{
case1:
printf("Enter the value for the latest element: ");
scanf("%d",&data);
printf("Enter the number BEFORE which you would like to insert it: ");
scanf("%d",&data1);
insBef(data,data1);
break;
case2:
printf("Enter the value for the latest element: ");
scanf("%d",&data);
printf("Enter the number AFTER which you would like to insert it: ");