void main ()
{
char *k="Borland International", *g, *p;
clrscr ();
printf ("Enter string to find: ");
gets (g);
p=strstr(k,g);
printf ("%s",p);
getch ();
}
No comments:
Post a Comment