Think Big Lift Big
2009-11-19 15:42:25 UTC
All help appreciated.. thanks
string strpr, str1, conc;
conc = uname + pwd;
//acctrdin is connected to a file
while (!acctrdin.eof())
{
strpr = str1;
if (strpr == conc)
{
cout << "Verified." << endl;
break;
}
acctrdin.getline(str1, 20);
}