what's the return value of malloc()
Answers were Sorted based on User's Feedback
Answer / vrushali
If there is memory avaliablity in the system..
Then fisrt address of the memory allocated in returned.
Else NULL/Garbage value is returned.
| Is This Answer Correct ? | 22 Yes | 2 No |
Answer / 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 |
Answer / monu verma
malloc returns void pointer to allocated memory location.
it is also called generic pointer
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / shashidhar murthy
malloc returns a pointer to the allocated space if required
memory is found, else, a null pointer is returned and
'errno' is set to indicate the error.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / tamil
malloc is a pointer it is used to allocate memory
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ashish
Upon successful completion with size not equal to 0, malloc() shall return a pointer to the allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to free() shall be returned. Otherwise, it shall return a null pointer [CX] and set errno to indicate the error
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sourisengupta
malloc returns a pointer to the allocated space if required
memory is available otherwise it will return a null pointer.
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the difference between #include and #include 'file' ?
Explain the concept of "dangling pointers" in C.
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
What is Conio.h ?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
write a program to display all prime numbers
what is the difference b/w NULL and null?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Does c have class?