error C2660: 'checkF' : function does not take 1 parameters
this is the error.
any help i will be very grateful
this is the error.
Code:
void checkF(char s[],char dStr[])
{
for (int i=0; i<count; ++i)
if (strcmp(s, list[i].getId())==0)
{
if (strcmp(dStr, list[i].getExpiryDate())==0)
{
cout<<endl;
cout<<" "<<list[i].getName();
cout<<" membership has expired! Please pay renewal fee of $120. Thank you"<<endl;
}
}
}
Comment