โช 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;
}