tolower

[機能]

  文字を小文字に変換します

[形式]
#include <ctype.h>

int tolower(int c)
	c : 変換する文字		
[使用例]

  1. 小文字を大文字,大文字を小文字に変換します
    #include <stdio.h>
    #include <ctype.h>
    
    int main()
    {
    	printf("大文字,小文字の変換\n");
    	printf("   A 小文字は %c,  h の大文字は %c\n", tolower('A'), toupper('h'));
    
    	return 0;
    }
    			
    (出力)
    大文字,小文字の変換
       A 小文字は a,  h の大文字は H			
[参照]

islower, isupper, toupper

菅沼ホーム 本文目次 演習問題解答例 付録目次 索引