Home » C Programming » Memory Allocation

Assume integer is 2 bytes wide. What will be the output of the following code? #include #include #define MAXROW 3 #define MAXCOL 4 int main() { int (*p)[MAXCOL]; p = (int (*) [MAXCOL])malloc(MAXROW *sizeof(*p)); printf("%d, %d\n", sizeof(p), sizeof(*p)); return 0; }

Correct Answer: 2, 8

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion