Answer Posted / 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 |
Post New Answer View All Answers
What is the maximum no. of arguments that can be given in a command line in C.?
Explain how can you tell whether two strings are the same?
What is fflush() function?
What is static volatile in c?
What is time complexity c?
what is the significance of static storage class specifier?
What is meant by errors and debugging?
Explain what are linked list?
What is a #include preprocessor?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
How many types of operator or there in c?
How can I do graphics in c?
Lists the benefits of c programming language?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is %s and %d in c?