I have a C++ question. I’m reading words from a text file andstoring each words in an array. Currently I’m doing it like thecode below and its working fine but I need all the words to bestored in the array as lower case letters. How can I do this? Thankyou.
if(file.is_open())
{
for(int i = 0; i< arrayLength; i++)
{
file>> array[i];
}
}
Expert Answer
An answer will be send to you shortly. . . . .