Pelles C forum

C language => Beginner questions => Topic started by: aravindva on August 02, 2007, 05:40:26 PM

Title: Help needed on strings
Post by: aravindva on August 02, 2007, 05:40:26 PM
Can somebody help me with the following problem...

It's very urgent..

Given a string and a sub-string as input, write a function to return the number of occurrences and/or position of the first occurrence.
Title: Re: Help needed on strings
Post by: frankie on August 02, 2007, 06:09:52 PM
This really seems an homework task.
So to help you try the function "strstr" from standard library (you'll find description in the help).  ::)
prototype:
char * strstr(const char *string, const char *substring);