字符数组作为函数返回值如何承接
#include<stdio.h>#include<string.h>
char reverse(char a[])//定义一个字符反转函数,希望返回是和a反转的字符数组
{
char b;
int i = 0;
int j = 0;
while (a)
{
i++;
}
i = i - 1;
while ((i+1)!= 0)
{
b = a;
j++;
i--;
}
return &b;
}
int main()
{
char a;
gets(a);
char *b;
b=reverse(a);
puts(b);}
不知道用什么去承接函数的返回值,运行会有越界提示
找到原因了。来分享一下,char定义的函数返回值是字符,而char*定义的函数返回值才是字符指针,一开始函数用char来定义,虽然返回值b是一个字符指针,但函数只能返回数组,把一个字符赋给字符指针出现了越界问题
既然你已经 #include <string.h>
就用 strlen来获取字符串长度就好啦,可以省去你用while跑一遍统计
#include <stdio.h>
#include <string.h>
int main(){
char a = "hello world";
printf("original string is \" %s \".\n",a);
int left = 0, right = strlen(a) - 1;
while(left < right){
char ctemp = a;
a = a;
a = ctemp;
left++;
right--;
}
printf("converted string is \" %s \".\n",a);
return 0;
}
页:
[1]