Answer Posted / 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 |
Post New Answer View All Answers
explain how do you use macro?
How will you divide two numbers in a MACRO?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Differentiate between full, complete & perfect binary trees.
Tell us something about keyword 'auto'.
find out largest elemant of diagonalmatrix
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is the use of bit field?
Why c is called a middle level language?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is data structure in c programming?
Describe explain how arrays can be passed to a user defined function
What are pointers? Why are they used?
Explain how can I remove the trailing spaces from a string?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above