标签: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