c char to lower case

#include <stdio.h>
#include <ctype.h>

int main() {
    char ch = 'A';
    ch = tolower(ch);
    printf("The lowercase equivalent of %c is %c\n", ch, tolower(ch));
    return 0;
}