指针作为函数的返回值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指针作为函数的返回值相关的知识,希望对你有一定的参考价值。
不能在实现函数返回在函数内部定义的局部数据对象的地址,
这是因为所有的局部数据对象在函数返回时就会消忙,其值不在有效。
#include<stdio.h>
char *match(char *s,char ch);
int main()
{
char ch,str[80],*p=NULL;
printf("please Input the string:\n");
scanf("%s",str);
getchar();
ch=getchar();
if((p=match(str,ch))!=NULL)
printf("%s\n",p);
else
printf("Not found\n");
return 0;
}
char *match(char *s,char ch)
{
while(*s!=‘\0‘)
if(*s==ch)
return (s);
else
s++;
return(NULL);
}
可以运行
但如果把局部函数改为:
char *match(char *s,char ch)
{
char ch,str[80],*p=NULL;
printf("please Input the string:\n");
scanf("%s",str);
getchar();
ch=getchar();
while(*s!=‘\0‘)
if(*s==ch)
return (s);
else
s++;
return(NULL);
}
会得到错误输出结果。
以上是关于指针作为函数的返回值的主要内容,如果未能解决你的问题,请参考以下文章