strupr()函数用于将给定的字符串转换为大写。
用法:
char *strupr(char *str);
参数:
- str:这表示要转换为大写字母的给定字符串。
返回值:它返回将给定字符串str的字符转换为大写字母后获得的修改后的字符串。
以下示例程序旨在说明C语言中的strupr()函数:
示例1:
// c program to demonstrate
// example of strupr() function.
#include<stdio.h>
#include<string.h>
int main()
{
char str[ ] = "geeksforgeeks is the best";
//converting the given string into uppercase.
printf("%s\n", strupr (str));
return 0;
}
输出:
GEEKSFORGEEKS IS THE BEST
示例2:
// c program to demonstrate
// example of strupr() function.
#include<stdio.h>
#include <string.h>
int main()
{
char str[] = "CompuTer ScienCe PoRTAl fOr geeKS";
printf("Given string is:%s\n", str);
printf("\nstring after converting to the uppercase is:%s", strupr(str));
return 0;
}
输出:
Given string is:CompuTer ScienCe PoRTAl fOr geeKS string after converting to the uppercase is:COMPUTER SCIENCE PORTAL FOR GEEKS
注意:这是一个非标准函数,仅适用于旧版本的MicrosoftC。
相关用法
- C++ c32rtomb()用法及代码示例
- C++ mbrlen()用法及代码示例
- C++ wcspbrk()用法及代码示例
- C++ wcsrchr()用法及代码示例
- C++ mbrtowc()用法及代码示例
- C语言 strcmpi()用法及代码示例
- C++ strtoumax()用法及代码示例
- C++ iswctype()用法及代码示例
- C++ wctype()用法及代码示例
- C++ strtoimax()用法及代码示例
- C++ c16rtomb()用法及代码示例
- C++ mbsrtowcs()用法及代码示例
- C++ towupper()用法及代码示例
- C++ feupdateenv()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 strupr() function in c。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。