strupr(string)
函式返回給定字串的大寫形式。下面我們來看一個strupr()
函式的簡單例子。
使用範例
建立一個原始檔:string_strupr.c,其程式碼如下所示 -
#include<stdio.h>
void main() {
char str[20];
printf("Enter string: ");
gets(str);//reads string from console
printf("String is: %s",str);
printf("\nUpper String is: %s \n",strupr(str));
}
執行上面範例程式碼,得到以下結果 -
Enter string: Tw511.com
String is: Tw511.com
Upper String is: TW511.COM