関数名:トッパー
ヘッダーファイル: <ctype.h>
関数プロトタイプ: int toupper(int ch);
機能: 小文字を小文字ではなく大文字に変換します。
パラメータ: int ch 変換対象の文字
戻り値: 変換後の文字を返します。
プログラム例:小文字を大文字に変換
#include<ctype.h>#include<stdio.h>intmain(){charch1,ch2;printf(inputacharacter:);scanf(%c,&ch1);ch2=toupper(ch1);printf(transform%cto%c .n,ch1,ch2);return0;}
実行結果:
文字を入力:gtransformgtoG。