the real constant in c can be expressed in which of the following forms
a) fractional form only
b) exponential form only
c) ascii form only
d) both a and b
No Answer is Posted For this Question
Be the First to Post Answer
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
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,
What are macros in C?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
What is the difference between int main and void main?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
Can we declare a function inside a function in c?
Explain how can you tell whether a program was compiled using c versus c++?
Identify the operators that is not used with pointer a. && b. # c. * d. >>
What is double pointer in c?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
What is Dynamic memory allocation in C? Name the dynamic allocation functions.