How many bytes will be allocated for the following code on GCC comp

Loading

โœช Choose the correct option.

How many bytes will be allocated for 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));
return 0;
}

A. 56 bytes
B. 12 bytes
C. 48 bytes
D. 128 bytes