What will be the output of the following code on GCC compiler (64 b

Loading

โœช Choose the correct option.

What will be the output of the following code on GCC compiler (64 bit machine)?

#include 
#include
#define MAXROW 3
#define MAXCOL 4
int main() {
int (*p)[MAXCOL];
p = (int (*) [MAXCOL])malloc(MAXROW *sizeof(*p));
printf("%d, %d ", sizeof(p), sizeof(*p));
return 0;
}

A. 8, 16
B. 4,16
C. 8,24
D. 16,32