#include <ctype.h>

int tolower(int c);

C/C++ function that returns the lower-case version of the letter represented by c. If c is not an alphabetical, it will be returned unchanged.

tolower()

#include <ctype.h>

int tolower( int character );

This function converts character from uppercase to lowercase . If character is not 'A' through 'Z' tolower() will simply return character.


Back to Essential C Functions.

Log in or register to write something here or to contact authors.