Ctype h C Tutorial

Item Value
Header filectype.h
Declarationint tolower(int ch);
Functionreturns the lowercase equivalent of ch if ch is a letter or ch is returned unchanged.

#include 
#include 
int main(void){
  putchar(tolower('Q'));
}
q