how can i make this program to accept both upper and lower case id's. The id when read from file is of upper case.The id's present are in the form of S2345. Help please.
cout << "Enter client ID TO Change email";
cin >> ids;
for(int i=0; i<rec; i++)
if(client[i].ID == ids){
cout << "\nEnter New email\n";
cin >> client[i].email;
}