Are there any problems with performing mathematical operations on different variable types?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What are the __date__ and __time__ preprocessor commands?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
what is memory leak?
Why c is a mother language?
Why do we use int main instead of void main in c?
What are the types of type qualifiers in c?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
how to find anagram without using string functions using only loops in c programming
write a program to display numbers from 1 to 10 and 10 to 1?