字符串 自定义函数怎么写

在自定义函数中怎么输入输出字符串,比如,输入一个字符串,把其中的小写字母转化成大写,然后返回,写出自定义函数和主函数... 在自定义函数中怎么输入输出字符串,比如,输入一个字符串,把其中的小写字母转化成大写,然后返回,写出自定义函数和主函数 展开
 我来答
匿名用户
2014-01-03
展开全部
#include <stdio.h>
#include <string.h>
///字符串是不方便直接return的,
///常用方法是输入串和输出串都传入函数,
///在函数里给输出串赋值。
void go(const char* input, const char* output)
{
int i = 0;
if (input && output)
{
while (input[i])
{
if (input[i] >= 'a' && input[i] <= 'z')
{
output[i] = input[i] - 'a' + 'A';
}
else
{
output[i] = input[i];
}
}
}
}

int main()
{
const int len = 16;
char a[len] = "abcde";
char b[len];
go(a, b);
printf("%s\n", a);
printf("%s\n", b);
return 0;
}
千雨殇月
2014-01-03 · 超过20用户采纳过TA的回答
知道答主
回答量:70
采纳率:0%
帮助的人:38.3万
展开全部
#include <stdio.h>
#include <ctype.h>
int conv(char s)
{
return tolower(s);
}
int main()
{
char s[] = "Clare";
int i = -1;
while(s[i++])
s[i]=conv(s[i]);
puts(s);
while(1);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cdyzxy
2014-01-03 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.4万
采纳率:85%
帮助的人:3772万
展开全部
#include<stdio.h>
void a2A(char *str)
{ while ( *str )
{ if ( (*str)>='a' && (*str)<='z' ) { (*str)-='a'; (*str)+='A'; }
}
}
void main()
{ char str[256];
scanf("%s",str);
a2A(str);
printf("%s\n",str);
}
追问
你少写了一个  str++;
追答
没错,失误了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式