stripos — Find position of first occurrence of a case-
insensitive string
int stripos ( char* haystack, char* needle, int offset )
Returns the numeric position of the first occurrence of
needle in the haystack string. Note that the needle may be
a string of one or more characters. If needle is not found,
stripos() will return -1.
The function should not make use of any C library function
calls.
No Answer is Posted For this Question
Be the First to Post Answer
What are different storage class specifiers in c?
how to generate sparse matrix in c
What is the use of define in c?
How can I copy just a portion of a string?
What is getch() function?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is an endless loop?
Explain what are global variables and explain how do you declare them?
how to write a program which adds two numbers without using semicolon in c
What does *p++ do?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is the difference between int main and void main in c?