C/ctype.h/tolower — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Версия 14:20, 25 мая 2010
tolower: returns the lowercase equivalent of ch if ch is a letter or ch is returned unchanged
//Declaration: int tolower(int ch);
//Function: returns 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*/