How do shell structures work?
No Answer is Posted For this Question
Be the First to Post Answer
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
What is the right type to use for boolean values in c?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
Explain About fork()?
How can a program be made to print the line number where an error occurs?
writw a program to insert an element in the begning of a doubly linked list
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Why do we use c for the speed of light?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
Write the following function in C. 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.
Can you tell me how to check whether a linked list is circular?