请看如下代码:
#include
#include
/*
第一个字母的首字换成大写。然后输出原字符串和换过的字符串
*/
int main()
{
/*初始化原始字符串 src*/
char *src = "i am lower chars.";
/*从原始字符串复制一个新的字符串 dest*/
char *dest = new char[strlen(src)+1];
memset(dest, 0, strlen(src) + 1);
strcpy(dest, src);
/*把新字符串dest的首字符转换为大写*/
dest[0] = towupper(dest[0]);
/*输出*/
printf("原来的字符串:%s\n", src);
printf("新的字符串:%s\n", dest);
getchar();
return 0;
}
我理解你这”第一个字母的首字换成大写“为“每个单词的首字母换成大写”,问题描述不太明白,具体自己再改程序吧!
#include "iostream"
using namespace std;
int main(void)
{
int i = 0;
char * hello = new char[50];
gets(hello);
printf("the source string is:");
puts(hello);
if(hello[0] >= 'a' && hello[0] <= 'z')
hello[0] -= 32;
while(hello[i] != '\0')
{
if(' ' == hello[i] && hello[i+1] >= 'a' && hello[i+1] <= 'z')
hello[i+1] -= 32;
i++;
}
puts(hello);
system("pause");
return 0;
}
#include "stdio.h"
void main()
{ char str[30];
int i;
gets(str);
printf("%s\n",str);
str[0]=str[0]-32;
printf("%s\n",str);
}
这种问题比较基础,建议你去网站找找郝斌讲的C语言视频看看,自己动手做做
取出字符串的第一个字符,用大小写函数转化下就好了。