Hi, I have a linked list which I created in a function? I want to allow the user to enter a name for the linked list, and then after he/she can display the list by typing in the title. This is part of my code
struct llistt{
char str[100]; // where the strings will be kept
struct llistt *next
struct llistt *prev
}
typedef struct llistt node