struct element //record for senders
{
char date[10];//The date of the transfer
int amountOfMoney;//the amount of money send
char senderName[500];//the sender name
char receiverName[500];// the receiver name
};
element * list;
list=new element[3000]; //o tambien list=(element*)malloc(sizeof(element)*3000);