- 论坛徽章:
- 0
|
一个很简单的小写字母转换为大写字母程序,但是转换前和转换后没有变化。
请问这样写错在哪里?谢谢。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int upperStr(char *to, char *from)
{
if(from == NULL)
return -1;
while(*to++ = *from++)
{
if(*to >= 'a' && *to <= 'z')
*to= *to - 32;
}
*to = '\0';
return 0;
}
int main()
{
char newStr[30], *oldStr ="abcd 1235 ADCD";
memset(newStr, '\0', 30);
printf("before upper the string is: %s\n", oldStr);
if(upperStr(newStr,oldStr) == 0)
printf("after upper the string is: %s\n", newStr);
else
printf("nothing has done\n");
exit(0);
} |
|
|