标签:c语言
#include<stdio.h>
int is_in(char *s, char c)
{
while (*s!=‘\0‘)
{
if (*s == c)
{
return 1;
}
else
{
s++;
}
return 0;
}
}
int main()
{
char *p = "abcdefg";
char s = ‘w‘;
int ret = is_in(p,s);
if (ret == 1)
{
printf("exist\n");
}
else
{
printf("not exist\n");
}
system("pause");
return 0;
}
熟悉了指针这个概念 加强函数使用的熟练程度!!
今天继续努力学习!!早日掌握C语言!!
标签:c语言
原文地址:http://lzd1995.blog.51cto.com/10973198/1721729