1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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是把大写的编程小写的 ,c语言中还有一些其他的函数,比方说比较字符串的大小strcmp
和拼接字符串strcat等等 |