Check if a string is present inside another string ! (Algo-)

 #include <stdio.h>

char *match(char c, char *s); /* prototype */

int main(void)

{

char s[80], *p, ch;

gets(s);

ch = getchar();

p = match(ch, s);

if(*p) /* there is a match */

printf("%s ", p);

else

printf("No match found.");

return 0;

}//mashrafe

char *match(char c, char *s)

{

while(c!=*s && *s) s++;

return(s);

}

Comments