what's the return value of malloc()

Answers were Sorted based on User's Feedback



what's the return value of malloc()..

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

what's the return value of malloc()..

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

what's the return value of malloc()..

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

what's the return value of malloc()..

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

what's the return value of malloc()..

Answer / tamil

malloc is a pointer it is used to allocate memory

Is This Answer Correct ?    0 Yes 0 No

what's the return value of malloc()..

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

what's the return value of malloc()..

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's the return value of malloc()..

Answer / himanshu

garbage
but calloc returns zero

Is This Answer Correct ?    4 Yes 7 No

what's the return value of malloc()..

Answer / ruchi

void

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Interview Questions

Program to simulate second clock

2 Answers  


What is meaning of tree

0 Answers  


What is use of integral promotions in c?

0 Answers  


Describe newline escape sequence with a sample program?

0 Answers  


Define VARIABLE?

0 Answers   ADP,






What do you mean by team??

5 Answers   Student,


Can we change the value of constant variable in c?

0 Answers  


An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above

0 Answers  


Why clrscr is used in c?

0 Answers  


find second largest element in array w/o using sorting techniques? use onle one for loop.

15 Answers   BitWise, Zycus Infotech,


Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********

4 Answers  


a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..

1 Answers  


Categories