#include <ctype.h> int tolower(int c) c : 変換する文字
#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
| 菅沼ホーム | 本文目次 | 演習問題解答例 | 付録目次 | 索引 |