What will be the output of the program on a 64 bit GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the program on a 64 bit GCC compiler?

#include 
int main() {
float *p;
int *q;
printf("%d %d ", sizeof(p), sizeof(q));
return 0;
}

A. 44781
B. 44655
C. 44596
D. 44659