Saved Bookmarks
| 1. |
The function that allocates requested size of bytes and returns a pointer to the first byte of the allocated space is -(A) realloc(B) malloc(C) calloc(D) none of the above |
|
Answer» Correct option - (B) malloc Explanation:- malloc allocates requested size of bytes and returns a pointer to the first byte of the allocated space. |
|