toupper,是一種計算機用語,用來將字元c轉換為大寫英文字母。
基本介紹
- 中文名:toupper
- 原型:extern int toupper(int c);
- 用法:#include <ctype.h>
- 功能:將字元c轉換為大寫英文字母
C語言原型,用法,功能,說明,舉例,
C語言原型
extern int toupper(int c);
用法
#include <ctype.h>
功能
將字元c轉換為大寫英文字母
說明
如果c為小寫英文字母,則返回對應的大寫字母;否則返回原來的值。
舉例
// toupper.c#include <stdio.h>#include <string.h>#include <ctype.h>int main(){ char *s="Hello, World!"; int i; //clrscr(); // clear screen printf("%s\n",s); for(i=0;i<strlen(s);i++) { putchar(toupper(s[i])); } getchar(); return 0;}
相關函式:tolower