How do you write a C++ program that converts uppercase letters to lowercase using the following function header:

char upperCaseToLowerCase(char ch)

what have you tried ? Please post your attempt to do this homework assignment. One way to solve the problem is to use the macro tolower() that's in stdlib.h ch = tolower(ch);

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.