Possible Duplicate:
tolower() not working
Here is my code:
char *ptr=&twod[j][i];
while (*ptr != '\0')
{
tolower(*ptr);
cout<<endl
<<endl
<<endl
<<*ptr;
ptr++;
}
When I cout the above, the the uppercase letters still remain as uppercase. Can someone explain to me why?