tolower
書式
int tolower(int c);
機能
英大文字を英小文字に変換する。それ以外は元のまま処理する。
戻り値
処理後の文字。
ヘッダーファイル
ctype.h
使用例
char s1[] = "You are SMALL!";
char s2[16];
int i;
for(i=0;i <= strlen(s1);i++){
s2[i] = tolower(s1[i]);
}
char s2[16];
int i;
for(i=0;i <= strlen(s1);i++){
s2[i] = tolower(s1[i]);
}