Question: Which statement or statements will re-allocate memory for the array long longPtr to hold 64 elements? (long*)realloc(longPtr, long * sizeof(64)); (longPtr*)realloc(64 * sizeof(long)); (int*)realloc(longPtr, 64
Which statement or statements will re-allocate memory for the array long longPtr to hold 64 elements?
(long*)realloc(longPtr, long * sizeof(64)); | ||
(longPtr*)realloc(64 * sizeof(long)); | ||
(int*)realloc(longPtr, 64 * sizeof(int)); | ||
(long*)realloc(longPtr, 64 * sizeof(long)); |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
