c语言将小写字母转换为大写字母

//将小写字母转换为大写字母
char* toUpperCase(char source[]){
for (int i = 0; i < 32; i++)
{
source[i] -= 32;
}
return source;
}

你可能感兴趣的:(c++)