Example of my problem.... I use linked list
struct list{
char name[20];
int date_of_born; //something like that...maybe char is better solution
list *next;
}
Program ask user for name and date_of_born...
My problem...
After user write names and dates i need to program print all names that borned after 21.12.(example). How can i do this?