explain what are actual arguments?
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.
Explain what does it mean when a pointer is used in an if statement?
Is boolean a datatype in c?
What is the meaning of ?
How is a macro different from a function?
What are the types of arrays in c?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
What are the disadvantages of c language?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Is c dynamically typed?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
What is the usage of the pointer in c?