Answer Posted / babitha
Library:<stdlib.h>
define:void *realloc(void *ptr, size_t size);
it modifies the existing size of block to new size with
copies of existing data.simply it add/delete the memory of
existed pointer based on new size without changing its
contents and it returns the pointer of first location.
possible cases:
1.if size >0,ptr is not null->modify the ptr with new size
and return pointer of 1st location.
2.if size is 0,ptr is not null->it would not change the
size of pointer but delete the existing contents.
3.if size >0,ptr is null->create new ptr with that size and
return that new pointer.
4.if there is not enough space to rellocate ptr,then it
return null pointer with out changing the block of data.
case 2 and 4 are disadvantages,since orignial contents are
getting deleted and also if we trying to use null pointer
then it would crash the program.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
write a c program for swapping two strings using pointer
Why is it important to memset a variable, immediately after allocating memory to it ?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Do pointers store the address of value or the actual value of a variable?
What does s c mean in text?
Explain b+ tree?
Explain 'bit masking'?
Write a program to swap two numbers without using a temporary variable?
What is NULL pointer?
What do you mean by Recursion Function?
Does c have class?
What does sizeof function do?
What are pointers?
How does pointer work in c?
Why do we need volatile in c?