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:
uml.org.cn
String is: uml.org.cn
Upper String is: uml.org.cn |
|
1397 次浏览 |
9次 |
|
捐助 |
|
|
|
|
|