免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1665 | 回复: 9
打印 上一主题 下一主题

[C] 关于指针判断的问题? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-09 11:39 |只看该作者 |倒序浏览
#include <stdio.h>
#include <string.h>
#define MAX 100
#define STOP "quit"

// Design and test a function that searches the string specified by the first function parameter for the first occurrence of a character specified by the second function parameter. Have the function return a pointer to the character if successful, and a null if the character is not found in the string. (This duplicates the way that the library strchr() function works.) Test the function in a complete program that uses a loop to provide input values for feeding to the function

char *my_strchr(char *,char);
void flush(void);

int main(void)
{
        char s[MAX];
        char ch;
        char *pt;

        puts("input the string (quit to quit):");
        gets(s);
        puts("input the character you want to find:");
        scanf("%c",&ch);

        while(flush(),strcmp(s,STOP)!=0)
        {
                pt=my_strchr(s,ch);
                printf("The address of string is %p\n",s);
                // printf("%p\n",pt);

                if(pt)
                        printf("There is no %c in %s\n",ch,s);
                else
                        printf("The first %c in %s's address is : %p\n",ch,s,pt);

                puts("input the string (quit to quit):");
                             gets(s);
                      puts("input the character you want to find:");
                             scanf("%c",&ch);       
        }
        puts("Bey!");
        return 0;
}

void flush(void)
{
        int ch;
        while((ch=getchar()) && ch!='\n')
                ;
}
char *my_strchr(char *str,char ch)
{
        while(*str)
        {
                if(*str==ch)
                        return str;
                str++;
        }
        return NULL;
}

程序是接收一串字符串,和一个字符,找到字符在字符串中第一次出现的地址,没有返回NULL
结果:
[watch@pt10 exercise]$ ./4
input the string (quit to quit):
asdf
input the character you want to find:
d
The address of string is 0x7fffedb37420
0x7fffedb37422
There is no d in asdf
input the string (quit to quit):

字符d的地址都找到了,为什么提示没有找到呢?
是不是这句if(pt)的问题啊,新手求高手指点?

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
2 [报告]
发表于 2012-08-09 11:47 |只看该作者
if(pt)

if(pt == NULL)

论坛徽章:
0
3 [报告]
发表于 2012-08-09 11:49 |只看该作者
谢谢,果然!
但是能讲讲两者的区别么,看来我对表达式的值还没理解完全

回复 2# hellioncu


   

论坛徽章:
1
射手座
日期:2013-08-21 13:11:46
4 [报告]
发表于 2012-08-09 11:54 |只看该作者
擦,最讨厌第二种了

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
5 [报告]
发表于 2012-08-09 11:57 |只看该作者
xiaowh00 发表于 2012-08-09 11:49
谢谢,果然!
但是能讲讲两者的区别么,看来我对表达式的值还没理解完全


既然能写这么个程序,不应该不懂这个问题


if (pt),找到了pt不等于NULL,也即条件为true,但是你打印找不到

论坛徽章:
0
6 [报告]
发表于 2012-08-09 11:58 |只看该作者
豁然开朗,哎,脑子进水了

回复 5# hellioncu


   

论坛徽章:
0
7 [报告]
发表于 2012-08-09 12:01 |只看该作者
时不时脑袋短路,我是新手,在看《c prime plus》这本书,看了一个多月了,感觉没多大进步,哎,前辈有些什么经验么? 不知道该怎么提高
回复 5# hellioncu


   

论坛徽章:
44
15-16赛季CBA联赛之浙江
日期:2021-10-11 02:03:59程序设计版块每日发帖之星
日期:2016-07-02 06:20:0015-16赛季CBA联赛之新疆
日期:2016-04-25 10:55:452016科比退役纪念章
日期:2016-04-23 00:51:2315-16赛季CBA联赛之山东
日期:2016-04-17 12:00:2815-16赛季CBA联赛之福建
日期:2016-04-12 15:21:2915-16赛季CBA联赛之辽宁
日期:2016-03-24 21:38:2715-16赛季CBA联赛之福建
日期:2016-03-18 12:13:4015-16赛季CBA联赛之佛山
日期:2016-02-05 00:55:2015-16赛季CBA联赛之佛山
日期:2016-02-04 21:11:3615-16赛季CBA联赛之天津
日期:2016-11-02 00:33:1215-16赛季CBA联赛之浙江
日期:2017-01-13 01:31:49
8 [报告]
发表于 2012-08-09 12:44 |只看该作者
if(!pt)
你这里刚好写反了……

论坛徽章:
0
9 [报告]
发表于 2012-08-09 12:46 |只看该作者
恩,脑子进水了
回复 8# windoze


   

论坛徽章:
0
10 [报告]
发表于 2012-08-09 20:46 |只看该作者
你输出的不是d的地址,而是s的地址,printf("The address of string is %p\n",pt);
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP