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 is a header file?
What is the meaning When we write "#include" what is # and what does include does there???
What is the difference between the local variable and global variable in c?
How can I write functions that take a variable number of arguments?
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
What is main () in c?
What is difference between function overloading and operator overloading?
What is the benefit of using an enum rather than a #define constant?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
What is the use of a semicolon (;) at the end of every program statement?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }