C++ Date...Question

How to make program that user write dates and program display all dates after 21.12.2012.
How about you give it a shot and come back with your code if you are having trouble.
your question is not clear enough.
I guess you want to do write something to document and read it
try with fstream.
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?
Last edited on
Topic archived. No new replies allowed.