What will be the output of the program on GCC compiler?

		
					

Loading

โœช Choose the correct option.

What will be the output of the program on GCC compiler?

#include 
#include
int main() {
int *p;
p = (int *)malloc(20);
printf("%d ", sizeof(p));
free(p);
return 0;
}

A. 4
B. 2
C. 8
D. Garbage Value