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 define c?
What is wild pointer in c?
Are pointers really faster than arrays?
What is difference between array and pointer in c?
Please write the area of a RIGHT ANGLED TRIANGLE.
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
Give a method to count the number of ones in a 32 bit number?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What is use of bit field?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Difference between fopen() and open()?