tolower : tolower « ctype.h « C Tutorial






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


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

int main(void){

  putchar(tolower('Q'));

}
q








18.13.tolower
18.13.1.tolower