What are the advantages of the functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is unsigned int in c?
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What are the preprocessors?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
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,
main is a predefined or user define function if user defined why? if predefined whay?
What is hashing in c?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
What the advantages of using Unions?
difference between c and c++?
How can I read/write structures from/to data files?
What are the restrictions of a modulus operator?