Discussion :: Memory Allocation
-
Point out the correct statement will let you access the elements of the array using 'p' in the following program?
#include
int main() { int i, j; int(*p)[3]; p = (int(*)[3])malloc(3*sizeof(*p)); return 0; }
A.
|
B.
|
C.
|
D.
|
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment