C++ Date...Question

BandK (52)
How to make program that user write dates and program display all dates after 21.12.2012.
nano511 (362)
How about you give it a shot and come back with your code if you are having trouble.
codeback99 (6)
your question is not clear enough.
I guess you want to do write something to document and read it
try with fstream.
BandK (52)
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
Registered users can post here. Sign in or register to post.