int search_key(FILE *fp,int key,int i)
{
if (accountcollection[i].key == key)
return 1;
else
return 0;
}