Calculate 1*2*3*____*n using recursive function??
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What are the uses of pre-processor directives?
explain what is an endless loop?
write a program of palindrome(madam=madam) using pointer?
writ a program to compare using strcmp VIVA and viva with its output.
What is graph in c?
Why we use stdio h in c?
what is the output of below int n=10; (n++)++; printf("%d",n);
Can an array be an Ivalue?
Is null equal to 0 in sql?
What's a "sequence point"?
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.