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
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
swap 2 numbers without using third variable?
wap in c to accept n number display the highest and lowest value
What is stack in c?
What is the collection of communication lines and routers called?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
what is the maximum limit of row and column of a matrix in c programming. in linux .
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What is meant by high-order and low-order bytes?
What does do in c?
ABCDCBA ABC CBA AB BA A A
any "C" function by default returns an a) int value b) float value c) char value d) a & b