tolower in C Programming

The tolower function is one of the Standard Library Functions available in C language, which is useful to convert the user-specified character into a Lowercase character. The syntax of the C tolower function is shown below. The following function will accept the character as the parameter and convert the given character to lowercase using the … Read more

C Program to Convert Character to Lowercase

How to convert the given character to lowercase in C using tolower built-in function and not to use tolower function. The C Programming tolower is a built-in function present in the header file, which is useful to convert the character to uppercase. The Syntax of the C tolower function is tolower (<Character>); C Program to … Read more