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.
What is the c language function prototype?
what is pointer ?
10 Answers Kernex Micro Systems,
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
What is #line used for?
write a c program to check weather a particluar bit is set or not?
How do you write a program which produces its own source code as output?
What is keyword in c?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
Tell me what are bitwise shift operators?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
What is a macro in c preprocessor?
Is there any demerits of using pointer?