Answer Posted / abhradeep chatterjee
yes, the above two answers are correct.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is calloc malloc realloc in c?
What is c language in simple words?
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
How can I ensure that integer arithmetic doesnt overflow?
What is a const pointer?
Can a void pointer point to a function?
what will be maximum number of comparisons when number of elements are given?
Why is event driven programming or procedural programming, better within specific scenario?
What is the use of define in c?
Explain the meaning of keyword 'extern' in a function declaration.
If I have a char * variable pointing to the name of a function ..
What functions are used for dynamic memory allocation in c language?
What is the difference between strcpy() and memcpy() function in c programming?
what is a constant pointer in C
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none