码迷,mamicode.com
首页 > 其他好文 > 详细

指针作为函数的返回值

时间:2017-10-20 21:52:29      阅读:526      评论:0      收藏:0      [点我收藏+]

标签:scanf   getch   ret   getc   nbsp   printf   错误输出   ==   har   

不能在实现函数返回在函数内部定义的局部数据对象的地址,

这是因为所有的局部数据对象在函数返回时就会消忙,其值不在有效。

#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);
}

会得到错误输出结果。

指针作为函数的返回值

标签:scanf   getch   ret   getc   nbsp   printf   错误输出   ==   har   

原文地址:http://www.cnblogs.com/Club-IT/p/7701406.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!