I need help with this C Program question. TO DO a): Implement function ToLowerCase() that will convert upper case letters in the string str to lower case. The function should return the memory address of the first character in string str. DO NOT use printf() in the function definition. */ char * ToLowerCase(char *str) { // don't forget the return statement } /* TO DO b): Implement function ToUpperCase() that will convert lower case letters in the string str to upper case. The function should return the memory address of the first character in string str. DO NOT use printf() in the function definition. */ char * ToUpperCase(char *str) { // don't forget the return statement }
I need help with this C
TO DO a): Implement function ToLowerCase() that will convert upper case letters in the string str to lower case.
The function should return the memory address of the first character in string str.
DO NOT use printf() in the function definition.
*/
char *
ToLowerCase(char *str)
{
// don't forget the return statement
}
/*
TO DO b): Implement function ToUpperCase() that will convert lower case letters in the string str to upper case.
The function should return the memory address of the first character in string str.
DO NOT use printf() in the function definition.
*/
char *
ToUpperCase(char *str)
{
// don't forget the return statement
}
Step by step
Solved in 2 steps with 2 images