Answer Posted / ravi a joshi
malloc() returns pointer to void. That is, pointer to the
first memory location of the allocated memory block. The
pointer type is unknown at this point, hence typecasting is
done later.
| Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
Describe wild pointers in c?
Where can I get an ansi-compatible lint?
Is it possible to pass an entire structure to functions?
What is masking?
What is operator precedence?
How does free() know explain how much memory to release?
Explain how can I pad a string to a known length?
What are header files in c programming?
Explain the difference between ++u and u++?
What is the most efficient way to count the number of bits which are set in an integer?
How will you write a code for accessing the length of an array without assigning it to another variable?
What is quick sort in c?
Implement bit Array in C.
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
Can we change the value of #define in c?