What is the mean of function?
No Answer is Posted For this Question
Be the First to Post Answer
State the difference between realloc and free.
What are the advantages of using macro in c language?
What is an lvalue?
How can you be sure that a program follows the ANSI C standard?
How many types of errors are there in c language? Explain
Find the highest of three numbers and print them using ascending orders?
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.
3 Answers Google, Infosys, JTL, OpenFeel,
Why double pointer is used in c?
What is the use of sizeof?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
Write a small C program to determine whether a machine's type is little-endian or big-endian.