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

C和指针c6-1

时间:2014-06-29 19:32:34      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   c   io   

#include<stdio.h>
#include<stdlib.h>

char *find_char(char const *source_str, char const *desc_str);

int main(void)
{
    char *source_str = "ABCDEF";
    char *desc_str = "MMD";
    
    char *c = find_char(source_str, desc_str);
    if(c != NULL)
    {
        printf("%c\n", *c);
    }
    else
    {
        printf("IS NULL!\n");    
    }
    
    
    return EXIT_SUCCESS;
}

char *find_char(char const *source_str, char const *desc_str)
{
    if( (source_str == NULL) || (desc_str == NULL) )
    {
        return NULL;
    }
    
    int i = 0;
    while(*desc_str != \0)
    {
        while(*source_str != \0)
        {
            if(*desc_str == *source_str)
            {
                char c = *source_str;
                char *d = &c;
                return d;
            }
            source_str++;
            i++;
        }
        desc_str++;
        source_str -= i;//将source_str的指针置位 
        i = 0;
    }
    
    return NULL;
}

 

C和指针c6-1,布布扣,bubuko.com

C和指针c6-1

标签:des   style   blog   color   c   io   

原文地址:http://www.cnblogs.com/yshyee/p/3814849.html

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